cocotb 1.9.1__cp36-cp36m-win_amd64.whl → 2.0.0b1__cp36-cp36m-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of cocotb might be problematic. Click here for more details.

Files changed (153) hide show
  1. cocotb/{ANSI.py → _ANSI.py} +5 -25
  2. cocotb/__init__.py +76 -315
  3. cocotb/_base_triggers.py +513 -0
  4. cocotb/_bridge.py +187 -0
  5. cocotb/_decorators.py +515 -0
  6. cocotb/_deprecation.py +3 -3
  7. cocotb/_exceptions.py +7 -0
  8. cocotb/_extended_awaitables.py +419 -0
  9. cocotb/_gpi_triggers.py +382 -0
  10. cocotb/_init.py +295 -0
  11. cocotb/_outcomes.py +54 -0
  12. cocotb/_profiling.py +46 -0
  13. cocotb/_py_compat.py +100 -29
  14. cocotb/_scheduler.py +454 -0
  15. cocotb/_test.py +245 -0
  16. cocotb/_test_factory.py +309 -0
  17. cocotb/_test_functions.py +42 -0
  18. cocotb/_typing.py +7 -0
  19. cocotb/_utils.py +296 -0
  20. cocotb/_version.py +3 -7
  21. cocotb/_xunit_reporter.py +66 -0
  22. cocotb/clock.py +271 -108
  23. cocotb/handle.py +1342 -795
  24. cocotb/libs/cocotb.dll +0 -0
  25. cocotb/libs/cocotb.exp +0 -0
  26. cocotb/libs/cocotb.lib +0 -0
  27. cocotb/libs/cocotbfli_modelsim.dll +0 -0
  28. cocotb/libs/cocotbfli_modelsim.exp +0 -0
  29. cocotb/libs/cocotbfli_modelsim.lib +0 -0
  30. cocotb/libs/cocotbutils.dll +0 -0
  31. cocotb/libs/cocotbutils.exp +0 -0
  32. cocotb/libs/cocotbutils.lib +0 -0
  33. cocotb/libs/cocotbvhpi_aldec.dll +0 -0
  34. cocotb/libs/cocotbvhpi_aldec.exp +0 -0
  35. cocotb/libs/cocotbvhpi_aldec.lib +0 -0
  36. cocotb/libs/cocotbvhpi_modelsim.dll +0 -0
  37. cocotb/libs/cocotbvhpi_modelsim.exp +0 -0
  38. cocotb/libs/cocotbvhpi_modelsim.lib +0 -0
  39. cocotb/libs/cocotbvpi_aldec.dll +0 -0
  40. cocotb/libs/cocotbvpi_aldec.exp +0 -0
  41. cocotb/libs/cocotbvpi_aldec.lib +0 -0
  42. cocotb/libs/cocotbvpi_ghdl.dll +0 -0
  43. cocotb/libs/cocotbvpi_ghdl.exp +0 -0
  44. cocotb/libs/cocotbvpi_ghdl.lib +0 -0
  45. cocotb/libs/cocotbvpi_icarus.exp +0 -0
  46. cocotb/libs/cocotbvpi_icarus.lib +0 -0
  47. cocotb/libs/cocotbvpi_icarus.vpl +0 -0
  48. cocotb/libs/cocotbvpi_modelsim.dll +0 -0
  49. cocotb/libs/cocotbvpi_modelsim.exp +0 -0
  50. cocotb/libs/cocotbvpi_modelsim.lib +0 -0
  51. cocotb/libs/embed.dll +0 -0
  52. cocotb/libs/embed.exp +0 -0
  53. cocotb/libs/embed.lib +0 -0
  54. cocotb/libs/gpi.dll +0 -0
  55. cocotb/libs/gpi.exp +0 -0
  56. cocotb/libs/gpi.lib +0 -0
  57. cocotb/libs/gpilog.dll +0 -0
  58. cocotb/libs/gpilog.exp +0 -0
  59. cocotb/libs/gpilog.lib +0 -0
  60. cocotb/libs/pygpilog.dll +0 -0
  61. cocotb/libs/pygpilog.exp +0 -0
  62. cocotb/libs/pygpilog.lib +0 -0
  63. cocotb/{log.py → logging.py} +105 -110
  64. cocotb/queue.py +103 -57
  65. cocotb/regression.py +667 -716
  66. cocotb/result.py +17 -188
  67. cocotb/share/def/aldec.exp +0 -0
  68. cocotb/share/def/aldec.lib +0 -0
  69. cocotb/share/def/ghdl.exp +0 -0
  70. cocotb/share/def/ghdl.lib +0 -0
  71. cocotb/share/def/icarus.exp +0 -0
  72. cocotb/share/def/icarus.lib +0 -0
  73. cocotb/share/def/modelsim.def +1 -0
  74. cocotb/share/def/modelsim.exp +0 -0
  75. cocotb/share/def/modelsim.lib +0 -0
  76. cocotb/share/include/cocotb_utils.h +6 -29
  77. cocotb/share/include/embed.h +5 -28
  78. cocotb/share/include/gpi.h +137 -92
  79. cocotb/share/include/gpi_logging.h +221 -142
  80. cocotb/share/include/py_gpi_logging.h +7 -4
  81. cocotb/share/include/vpi_user_ext.h +4 -26
  82. cocotb/share/lib/verilator/verilator.cpp +59 -54
  83. cocotb/simulator.cp36-win_amd64.exp +0 -0
  84. cocotb/simulator.cp36-win_amd64.lib +0 -0
  85. cocotb/simulator.cp36-win_amd64.pyd +0 -0
  86. cocotb/task.py +434 -212
  87. cocotb/triggers.py +55 -1092
  88. cocotb/types/__init__.py +25 -47
  89. cocotb/types/_abstract_array.py +151 -0
  90. cocotb/types/_array.py +264 -0
  91. cocotb/types/_logic.py +296 -0
  92. cocotb/types/_logic_array.py +834 -0
  93. cocotb/types/{range.py → _range.py} +36 -44
  94. cocotb/types/_resolve.py +76 -0
  95. cocotb/utils.py +119 -587
  96. cocotb-2.0.0b1.dist-info/METADATA +48 -0
  97. cocotb-2.0.0b1.dist-info/RECORD +139 -0
  98. cocotb-2.0.0b1.dist-info/entry_points.txt +3 -0
  99. {cocotb-1.9.1.dist-info → cocotb-2.0.0b1.dist-info}/top_level.txt +1 -0
  100. cocotb_tools/_coverage.py +33 -0
  101. cocotb_tools/_vendor/__init__.py +3 -0
  102. cocotb_tools/check_results.py +65 -0
  103. cocotb_tools/combine_results.py +152 -0
  104. cocotb_tools/config.py +241 -0
  105. {cocotb → cocotb_tools}/ipython_support.py +29 -22
  106. cocotb_tools/makefiles/Makefile.deprecations +27 -0
  107. {cocotb/share → cocotb_tools}/makefiles/Makefile.inc +82 -54
  108. {cocotb/share → cocotb_tools}/makefiles/Makefile.sim +8 -33
  109. {cocotb/share → cocotb_tools}/makefiles/simulators/Makefile.activehdl +18 -18
  110. cocotb_tools/makefiles/simulators/Makefile.cvc +61 -0
  111. cocotb_tools/makefiles/simulators/Makefile.dsim +39 -0
  112. {cocotb/share → cocotb_tools}/makefiles/simulators/Makefile.ghdl +13 -42
  113. cocotb_tools/makefiles/simulators/Makefile.icarus +80 -0
  114. cocotb_tools/makefiles/simulators/Makefile.ius +93 -0
  115. cocotb_tools/makefiles/simulators/Makefile.modelsim +9 -0
  116. cocotb_tools/makefiles/simulators/Makefile.nvc +60 -0
  117. cocotb_tools/makefiles/simulators/Makefile.questa +29 -0
  118. cocotb_tools/makefiles/simulators/Makefile.questa-compat +143 -0
  119. cocotb_tools/makefiles/simulators/Makefile.questa-qisqrun +149 -0
  120. cocotb_tools/makefiles/simulators/Makefile.riviera +144 -0
  121. cocotb_tools/makefiles/simulators/Makefile.vcs +65 -0
  122. {cocotb/share → cocotb_tools}/makefiles/simulators/Makefile.verilator +15 -22
  123. {cocotb/share → cocotb_tools}/makefiles/simulators/Makefile.xcelium +20 -52
  124. {cocotb → cocotb_tools}/runner.py +794 -361
  125. cocotb/_sim_versions.py → cocotb_tools/sim_versions.py +16 -21
  126. pygpi/entry.py +34 -17
  127. cocotb/binary.py +0 -858
  128. cocotb/config.py +0 -289
  129. cocotb/decorators.py +0 -332
  130. cocotb/memdebug.py +0 -35
  131. cocotb/outcomes.py +0 -56
  132. cocotb/scheduler.py +0 -1099
  133. cocotb/share/makefiles/Makefile.deprecations +0 -12
  134. cocotb/share/makefiles/simulators/Makefile.cvc +0 -94
  135. cocotb/share/makefiles/simulators/Makefile.icarus +0 -111
  136. cocotb/share/makefiles/simulators/Makefile.ius +0 -125
  137. cocotb/share/makefiles/simulators/Makefile.modelsim +0 -32
  138. cocotb/share/makefiles/simulators/Makefile.nvc +0 -64
  139. cocotb/share/makefiles/simulators/Makefile.questa +0 -168
  140. cocotb/share/makefiles/simulators/Makefile.riviera +0 -177
  141. cocotb/share/makefiles/simulators/Makefile.vcs +0 -98
  142. cocotb/types/array.py +0 -309
  143. cocotb/types/logic.py +0 -292
  144. cocotb/types/logic_array.py +0 -298
  145. cocotb/wavedrom.py +0 -199
  146. cocotb/xunit_reporter.py +0 -80
  147. cocotb-1.9.1.dist-info/METADATA +0 -168
  148. cocotb-1.9.1.dist-info/RECORD +0 -121
  149. cocotb-1.9.1.dist-info/entry_points.txt +0 -3
  150. {cocotb-1.9.1.dist-info → cocotb-2.0.0b1.dist-info}/LICENSE +0 -0
  151. {cocotb-1.9.1.dist-info → cocotb-2.0.0b1.dist-info}/WHEEL +0 -0
  152. {cocotb/_vendor → cocotb_tools}/__init__.py +0 -0
  153. {cocotb → cocotb_tools}/_vendor/distutils_version.py +0 -0
cocotb/wavedrom.py DELETED
@@ -1,199 +0,0 @@
1
- # Copyright cocotb contributors
2
- # Copyright (c) 2014 Potential Ventures Ltd
3
- # Licensed under the Revised BSD License, see LICENSE for details.
4
- # SPDX-License-Identifier: BSD-3-Clause
5
-
6
- import json
7
- from collections import OrderedDict, defaultdict
8
- from collections.abc import Mapping
9
-
10
- import cocotb
11
- from cocotb.handle import SimHandleBase
12
- from cocotb.triggers import ReadOnly, RisingEdge
13
-
14
- try:
15
- from cocotb_bus.bus import Bus
16
- except ImportError:
17
- Bus = None
18
-
19
-
20
- class Wavedrom:
21
- """Base class for a WaveDrom compatible tracer."""
22
-
23
- def __init__(self, obj, name=""):
24
- self._hdls = OrderedDict()
25
- self._name = name
26
- if isinstance(obj, Mapping):
27
- self._hdls.update(obj)
28
- elif isinstance(obj, SimHandleBase):
29
- name = obj._name.split(".")[-1]
30
- self._hdls[name] = obj
31
- self._name = name
32
- elif Bus is not None and isinstance(obj, Bus):
33
- self._hdls.update(obj._signals)
34
- self._name = obj._name
35
- else:
36
- raise TypeError(
37
- "Cannot use {} with {} objects".format(
38
- type(self).__qualname__, type(obj).__name__
39
- )
40
- ) from None
41
- self.clear()
42
-
43
- def sample(self):
44
- """Record a sample of the signal value at this point in time."""
45
-
46
- def _lastval(samples):
47
- for x in range(len(samples) - 1, -1, -1):
48
- if samples[x] not in "=.|":
49
- return samples[x]
50
- return None
51
-
52
- for name, hdl in self._hdls.items():
53
- val = hdl.value
54
- valstr = val.binstr.lower()
55
-
56
- # Decide what character to use to represent this signal
57
- if len(valstr) == 1:
58
- char = valstr
59
- elif "x" in valstr:
60
- char = "x"
61
- elif "u" in valstr:
62
- char = "u"
63
- elif "z" in valstr:
64
- char = "z"
65
- else:
66
- if (
67
- len(self._data[name])
68
- and self._data[name][-1] == int(val)
69
- and self._samples[name][-1] in "=."
70
- ):
71
- char = "."
72
- else:
73
- char = "="
74
- self._data[name].append(int(val))
75
-
76
- # Detect if this is unchanged
77
- if len(valstr) == 1 and char == _lastval(self._samples[name]):
78
- char = "."
79
- self._samples[name].append(char)
80
-
81
- def clear(self):
82
- """Delete all sampled data."""
83
- self._samples = defaultdict(list)
84
- self._data = defaultdict(list)
85
-
86
- def gap(self):
87
- for name, hdl in self._hdls.items():
88
- self._samples[name].append("|")
89
-
90
- def get(self, add_clock=True):
91
- """Return the samples as a list suitable for use with WaveDrom."""
92
- siglist = []
93
- traces = []
94
- for name in self._hdls.keys():
95
- samples = self._samples[name]
96
- traces.append({"name": name, "wave": "".join(samples)})
97
- if name in self._data:
98
- traces[-1]["data"] = " ".join([repr(s) for s in self._data[name]])
99
-
100
- if len(traces) > 1:
101
- traces.insert(0, self._name)
102
- siglist.append(traces)
103
- else:
104
- siglist.append(traces[0])
105
-
106
- if add_clock:
107
- tracelen = len(traces[-1]["wave"])
108
- siglist.insert(0, {"name": "clk", "wave": "p" + "." * (tracelen - 1)})
109
-
110
- return siglist
111
-
112
-
113
- class trace:
114
- """Context manager to enable tracing of signals.
115
-
116
- Arguments are an arbitrary number of signals or buses to trace.
117
- We also require a clock to sample on, passed in as a keyword argument.
118
-
119
- Usage::
120
-
121
- with trace(sig1, sig2, a_bus, clk=clk) as waves:
122
- # Stuff happens, we trace it
123
-
124
- # Dump to JSON format compatible with WaveDrom
125
- j = waves.dumpj()
126
- """
127
-
128
- def __init__(self, *args, clk=None):
129
- self._clock = clk
130
- self._signals = []
131
- for arg in args:
132
- self._signals.append(Wavedrom(arg))
133
- self._coro = None
134
- self._clocks = 0
135
- self._enabled = False
136
-
137
- if self._clock is None:
138
- raise ValueError("Trace requires a clock to sample")
139
-
140
- async def _monitor(self):
141
- self._clocks = 0
142
- while True:
143
- await RisingEdge(self._clock)
144
- await ReadOnly()
145
- if not self._enabled:
146
- continue
147
- self._clocks += 1
148
- for sig in self._signals:
149
- sig.sample()
150
-
151
- def insert_gap(self):
152
- self._clocks += 1
153
- for sig in self._signals:
154
- sig.gap()
155
-
156
- def disable(self):
157
- self._enabled = False
158
-
159
- def enable(self):
160
- self._enabled = True
161
-
162
- def __enter__(self):
163
- for sig in self._signals:
164
- sig.clear()
165
- self.enable()
166
- self._coro = cocotb.start_soon(self._monitor())
167
- return self
168
-
169
- def __exit__(self, exc_type, exc_val, exc_tb):
170
- self._coro.kill()
171
- for sig in self._signals:
172
- sig.clear()
173
- self.disable()
174
- return None
175
-
176
- def write(self, filename, **kwargs):
177
- with open(filename, "w") as f:
178
- f.write(self.dumpj(**kwargs))
179
-
180
- def dumpj(self, header="", footer="", config=""):
181
- trace = {"signal": []}
182
- trace["signal"].append(
183
- {"name": "clock", "wave": "p" + "." * (self._clocks - 1)}
184
- )
185
- for sig in self._signals:
186
- trace["signal"].extend(sig.get(add_clock=False))
187
- if header:
188
- if isinstance(header, dict):
189
- trace["head"] = header
190
- else:
191
- trace["head"] = {"text": header}
192
- if footer:
193
- if isinstance(footer, dict):
194
- trace["foot"] = footer
195
- else:
196
- trace["foot"] = {"text": footer}
197
- if config:
198
- trace["config"] = config
199
- return json.dumps(trace, indent=4, sort_keys=False)
cocotb/xunit_reporter.py DELETED
@@ -1,80 +0,0 @@
1
- # Copyright (c) 2013 Potential Ventures Ltd
2
- # Copyright (c) 2013 SolarFlare Communications Inc
3
- # All rights reserved.
4
- #
5
- # Redistribution and use in source and binary forms, with or without
6
- # modification, are permitted provided that the following conditions are met:
7
- # * Redistributions of source code must retain the above copyright
8
- # notice, this list of conditions and the following disclaimer.
9
- # * Redistributions in binary form must reproduce the above copyright
10
- # notice, this list of conditions and the following disclaimer in the
11
- # documentation and/or other materials provided with the distribution.
12
- # * Neither the name of Potential Ventures Ltd,
13
- # SolarFlare Communications Inc nor the
14
- # names of its contributors may be used to endorse or promote products
15
- # derived from this software without specific prior written permission.
16
- #
17
- # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
18
- # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19
- # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20
- # DISCLAIMED. IN NO EVENT SHALL POTENTIAL VENTURES LTD BE LIABLE FOR ANY
21
- # DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
22
- # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
23
- # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
24
- # ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
- # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
26
- # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
-
28
- import xml.etree.ElementTree as ET
29
- from xml.etree.ElementTree import Element, SubElement
30
-
31
-
32
- class XUnitReporter:
33
- def __init__(self, filename="results.xml"):
34
- self.results = Element("testsuites", name="results")
35
- self.filename = filename
36
-
37
- def add_testsuite(self, **kwargs):
38
- self.last_testsuite = SubElement(self.results, "testsuite", **kwargs)
39
- return self.last_testsuite
40
-
41
- def add_testcase(self, testsuite=None, **kwargs):
42
- if testsuite is None:
43
- testsuite = self.last_testsuite
44
- self.last_testcase = SubElement(testsuite, "testcase", **kwargs)
45
- return self.last_testcase
46
-
47
- def add_property(self, testsuite=None, **kwargs):
48
- if testsuite is None:
49
- testsuite = self.last_testsuite
50
- self.last_property = SubElement(testsuite, "property", **kwargs)
51
- return self.last_property
52
-
53
- def add_failure(self, testcase=None, **kwargs):
54
- if testcase is None:
55
- testcase = self.last_testcase
56
- SubElement(testcase, "failure", **kwargs)
57
-
58
- def add_skipped(self, testcase=None, **kwargs):
59
- if testcase is None:
60
- testcase = self.last_testcase
61
- SubElement(testcase, "skipped", **kwargs)
62
-
63
- def indent(self, elem, level=0):
64
- i = "\n" + level * " "
65
- if len(elem):
66
- if not elem.text or not elem.text.strip():
67
- elem.text = i + " "
68
- if not elem.tail or not elem.tail.strip():
69
- elem.tail = i
70
- for elem in elem:
71
- self.indent(elem, level + 1)
72
- if not elem.tail or not elem.tail.strip():
73
- elem.tail = i
74
- else:
75
- if level and (not elem.tail or not elem.tail.strip()):
76
- elem.tail = i
77
-
78
- def write(self):
79
- self.indent(self.results)
80
- ET.ElementTree(self.results).write(self.filename, encoding="UTF-8")
@@ -1,168 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: cocotb
3
- Version: 1.9.1
4
- Summary: cocotb is a coroutine based cosimulation library for writing VHDL and Verilog testbenches in Python.
5
- Home-page: https://www.cocotb.org
6
- Author: Chris Higgs, Stuart Hodgson
7
- Maintainer: cocotb contributors
8
- Maintainer-email: cocotb@lists.librecores.org
9
- License: BSD
10
- Project-URL: Bug Tracker, https://github.com/cocotb/cocotb/issues
11
- Project-URL: Source Code, https://github.com/cocotb/cocotb
12
- Project-URL: Documentation, https://docs.cocotb.org
13
- Platform: any
14
- Classifier: Programming Language :: Python :: 3
15
- Classifier: Programming Language :: Python :: 3.6
16
- Classifier: Programming Language :: Python :: 3.7
17
- Classifier: Programming Language :: Python :: 3.8
18
- Classifier: Programming Language :: Python :: 3.9
19
- Classifier: Programming Language :: Python :: 3.10
20
- Classifier: Programming Language :: Python :: 3.11
21
- Classifier: License :: OSI Approved :: BSD License
22
- Classifier: Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)
23
- Classifier: Framework :: cocotb
24
- Requires-Python: >=3.6
25
- Description-Content-Type: text/markdown
26
- License-File: LICENSE
27
- Requires-Dist: find-libpython
28
- Provides-Extra: bus
29
- Requires-Dist: cocotb-bus ; extra == 'bus'
30
-
31
- **cocotb** is a coroutine based cosimulation library for writing VHDL and Verilog testbenches in Python.
32
-
33
- [![Documentation Status](https://readthedocs.org/projects/cocotb/badge/?version=latest)](https://docs.cocotb.org/en/latest/)
34
- [![CI](https://github.com/cocotb/cocotb/actions/workflows/build-test-dev.yml/badge.svg?branch=master)](https://github.com/cocotb/cocotb/actions/workflows/build-test-dev.yml)
35
- [![PyPI](https://img.shields.io/pypi/dm/cocotb.svg?label=PyPI%20downloads)](https://pypi.org/project/cocotb/)
36
- [![Gitpod Ready-to-Code](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/cocotb/cocotb)
37
- [![codecov](https://codecov.io/gh/cocotb/cocotb/branch/master/graph/badge.svg)](https://codecov.io/gh/cocotb/cocotb)
38
-
39
- * Read the [documentation](https://docs.cocotb.org)
40
- * Get involved:
41
- * [Raise a bug / request an enhancement](https://github.com/cocotb/cocotb/issues/new) (Requires a GitHub account)
42
- * [Join the Gitter chat room](https://gitter.im/cocotb/Lobby)
43
-
44
- ## Installation
45
-
46
- The current stable version of cocotb requires:
47
-
48
- - Python 3.6+
49
- - GNU Make 3+
50
- - An HDL simulator (such as [Icarus Verilog](https://docs.cocotb.org/en/stable/simulator_support.html#icarus-verilog),
51
- [Verilator](https://docs.cocotb.org/en/stable/simulator_support.html#verilator),
52
- [GHDL](https://docs.cocotb.org/en/stable/simulator_support.html#ghdl) or
53
- [other simulator](https://docs.cocotb.org/en/stable/simulator_support.html))
54
-
55
- After installing these dependencies, the latest stable version 1.x of cocotb can be installed with pip.
56
-
57
- ```command
58
- pip install 'cocotb == 1.*'
59
- ```
60
-
61
- For more details on installation, including prerequisites,
62
- see [the documentation](https://docs.cocotb.org/en/stable/install.html).
63
-
64
- For details on how to install the *development* version of cocotb,
65
- see [the preliminary documentation of the future release](https://docs.cocotb.org/en/latest/install_devel.html#install-devel).
66
-
67
- **!!! Bus and Testbenching Components !!!**
68
- The reusable bus interfaces and testbenching components have recently been moved to the [cocotb-bus](https://github.com/cocotb/cocotb-bus) package.
69
- You can easily install these at the same time as cocotb by adding the `bus` extra install: `pip install cocotb[bus]`.
70
-
71
- ## Usage
72
-
73
- As a first trivial introduction to cocotb, the following example "tests" a flip-flop.
74
-
75
- First, we need a hardware design which we can test. For this example, create a file `dff.sv` with SystemVerilog code for a simple [D flip-flop](https://en.wikipedia.org/wiki/Flip-flop_(electronics)#D_flip-flop). You could also use any other language a [cocotb-supported simulator](https://docs.cocotb.org/en/stable/simulator_support.html) understands, e.g. VHDL.
76
-
77
- ```systemverilog
78
- // dff.sv
79
-
80
- `timescale 1us/1ns
81
-
82
- module dff (
83
- output logic q,
84
- input logic clk, d
85
- );
86
-
87
- always @(posedge clk) begin
88
- q <= d;
89
- end
90
-
91
- endmodule
92
- ```
93
-
94
- An example of a simple randomized cocotb testbench:
95
-
96
- ```python
97
- # test_dff.py
98
-
99
- import random
100
-
101
- import cocotb
102
- from cocotb.clock import Clock
103
- from cocotb.triggers import RisingEdge
104
- from cocotb.types import LogicArray
105
-
106
- @cocotb.test()
107
- async def dff_simple_test(dut):
108
- """Test that d propagates to q"""
109
-
110
- # Assert initial output is unknown
111
- assert LogicArray(dut.q.value) == LogicArray("X")
112
- # Set initial input value to prevent it from floating
113
- dut.d.value = 0
114
-
115
- clock = Clock(dut.clk, 10, units="us") # Create a 10us period clock on port clk
116
- # Start the clock. Start it low to avoid issues on the first RisingEdge
117
- cocotb.start_soon(clock.start(start_high=False))
118
-
119
- # Synchronize with the clock. This will regisiter the initial `d` value
120
- await RisingEdge(dut.clk)
121
- expected_val = 0 # Matches initial input value
122
- for i in range(10):
123
- val = random.randint(0, 1)
124
- dut.d.value = val # Assign the random value val to the input port d
125
- await RisingEdge(dut.clk)
126
- assert dut.q.value == expected_val, f"output q was incorrect on the {i}th cycle"
127
- expected_val = val # Save random value for next RisingEdge
128
-
129
- # Check the final input on the next clock
130
- await RisingEdge(dut.clk)
131
- assert dut.q.value == expected_val, "output q was incorrect on the last cycle"
132
- ```
133
-
134
- A simple Makefile:
135
-
136
- ```make
137
- # Makefile
138
-
139
- TOPLEVEL_LANG = verilog
140
- VERILOG_SOURCES = $(shell pwd)/dff.sv
141
- TOPLEVEL = dff
142
- MODULE = test_dff
143
-
144
- include $(shell cocotb-config --makefiles)/Makefile.sim
145
- ```
146
-
147
- In order to run the test with Icarus Verilog, execute:
148
-
149
- ```command
150
- make SIM=icarus
151
- ```
152
-
153
- [![asciicast](https://asciinema.org/a/317220.svg)](https://asciinema.org/a/317220)
154
-
155
- For more information please see the [cocotb documentation](https://docs.cocotb.org/)
156
- and [our wiki](https://github.com/cocotb/cocotb/wiki).
157
-
158
- ## Tutorials, examples and related projects
159
-
160
- * the tutorial section [in the official documentation](https://docs.cocotb.org/)
161
- * [cocotb-bus](https://github.com/cocotb/cocotb-bus) for pre-packaged testbenching tools and reusable bus interfaces.
162
- * [cocotb-based USB 1.1 test suite](https://github.com/antmicro/usb-test-suite-build) for FPGA IP, with testbenches for a variety of open source USB cores
163
- * [`cocotb-coverage`](https://github.com/mciepluc/cocotb-coverage), an extension for Functional Coverage and Constrained Randomization
164
- * [`uvm-python`](https://github.com/tpoikela/uvm-python), an almost 1:1 port of UVM 1.2 to Python
165
- * our wiki [on extension modules](https://github.com/cocotb/cocotb/wiki/Further-Resources#extension-modules-cocotbext)
166
- * the list of [GitHub projects depending on cocotb](https://github.com/cocotb/cocotb/network/dependents)
167
-
168
-
@@ -1,121 +0,0 @@
1
- cocotb/ANSI.py,sha256=BXtYyxla8R_bHRasjDyZGibYDNoh2deY8Snyre8YT54,3458
2
- cocotb/__init__.py,sha256=_NKjtHVLsDKgFPI7oXqNPKxiHt7EO-0XmUkqSLgGI1A,11650
3
- cocotb/_deprecation.py,sha256=zCaBqq6H9GRyKgSij9NvLs6Ku5CIdvKuGW6rLwi1Hhk,1189
4
- cocotb/_py_compat.py,sha256=Z-6oewHZbG79nO_tILrRrClahxjYaeEShezbcLnJsc4,2754
5
- cocotb/_sim_versions.py,sha256=sZWOj9odl_yPo92B9k_b1c2XHll4roD-oHnVSqY4VhE,3689
6
- cocotb/_version.py,sha256=Y9ZFAEIPVMHOYFbqj7R0BUsltw4atdHfsFFz6rNM-s8,303
7
- cocotb/binary.py,sha256=8hmcvOGTbfbuigXtmqv-XJLGswL7eIcwtle4ZZzTqRU,28101
8
- cocotb/clock.py,sha256=tyrtalfTCUiBTTfo_4kIGKG5mnCSCq3hLmAxwrmyQyM,6734
9
- cocotb/config.py,sha256=70EKduzmki3femKYnhjHgVYOyw_abZ8PTxBvOQ9NmGI,9943
10
- cocotb/decorators.py,sha256=h_mn2iOXybXj-29lt39PdStas5NyTRP9475iu_c-wqA,12059
11
- cocotb/handle.py,sha256=Amc7Qe-ayjEHEOwBDHeQY9QAsmuxzM-dVBvUZ9rlsyQ,42802
12
- cocotb/ipython_support.py,sha256=gon5kkyYVl2nJPHZmyo33vFkb0F9qEPMdPKh70WJx0g,3228
13
- cocotb/log.py,sha256=_pq5KzdU3dbFdSmaJfu_GhLSmIQaGuNsXQkIulSZuT0,10746
14
- cocotb/memdebug.py,sha256=UzsA9FtitLlxt-Y9pf_vlknKYX13mroVjZqvax9ddzs,1888
15
- cocotb/outcomes.py,sha256=4khaKTI7dZWhIAH1vZ7XWejQtlSGWb1-ZuHvSRClK9w,1355
16
- cocotb/queue.py,sha256=BoFIJ8tO2HGTPb_30I9Td7-W6VLQ54kquPrc5qLw2dk,5338
17
- cocotb/regression.py,sha256=XdokhhpR3GjriV3Hx-ihIayyjVLUiN27MdHldXMr1JE,33905
18
- cocotb/result.py,sha256=0B3i0wXair7gfKlelTrRSkFpPbyuhsW2kPtSvSasweo,6905
19
- cocotb/runner.py,sha256=MoWErcb45_kNA-OzmrmNEQ4VEgy0pxPnw8oBGPNT7-w,51685
20
- cocotb/scheduler.py,sha256=VT7Dg0Jo6NfbsRtImnNVdox0UEtpxpMEi6jNiBx4tZQ,42138
21
- cocotb/simulator.cp36-win_amd64.exp,sha256=o2VVIMxA63CEijcDHQkmk523fPmvDPEJXyhm72x184g,748
22
- cocotb/simulator.cp36-win_amd64.lib,sha256=uPzgF9abtPC3VznNEMg5vSHVw9oYKXTmfWcEj1I33U0,2036
23
- cocotb/simulator.cp36-win_amd64.pyd,sha256=vKUZKyHfEVyZjesfwAzeWRVS--Do3Gz5BfWQmWIwBKA,35328
24
- cocotb/simulator.cp36-win_amd64.pyd.2.config,sha256=JGoavZmGw71REMRGu8DrBlQezZSCkQx7E3GOzGIf9_o,263
25
- cocotb/task.py,sha256=l51CgFAzBfKQD0snRuROoU24g52fd91wZM8GfSc-CQA,11360
26
- cocotb/triggers.py,sha256=GP79vYMcH78HjHXfUaHLyOl1uJM8R5XL34i93HSmGHU,36077
27
- cocotb/utils.py,sha256=JTc870duDxUtSIM_UxXhsW9DtBvz6ziTagpn5wQ2ryU,23762
28
- cocotb/wavedrom.py,sha256=xQ_xG_cdUc4q4hju7Sjys-gFrJCg7RngCPFNI3A4KAA,6187
29
- cocotb/xunit_reporter.py,sha256=DrRM7Fn9LBY2hmtWI0PNFkiULpdNtqNzAk-1aw8Zd80,3632
30
- cocotb/_vendor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
31
- cocotb/_vendor/distutils_version.py,sha256=k4Zipnnw88hyoE5MLBbgcXh9iu7iYGK3K5s97wVpOFE,13185
32
- cocotb/libs/cocotb.dll,sha256=F1K-oUf_nRLIKgtbxtSNfg0sa0jcdhex0IsHxJlEmxM,30208
33
- cocotb/libs/cocotb.exp,sha256=3SlqA7SQkEYehHcmrwS6oyq5qT5LzfHkjPGdi2-TGS8,1101
34
- cocotb/libs/cocotb.lib,sha256=XI6SpkeqYDsiYBiNrwx3SsXrRxEVmIYlB__MYMh_YaI,2358
35
- cocotb/libs/cocotbfli_modelsim.dll,sha256=hXpiSgBdiWy9MuJ6_sUzvmiF69fmVSAuRkT2A0A4p4k,99840
36
- cocotb/libs/cocotbfli_modelsim.exp,sha256=CaJabrrUZl8Mwt8QwQpmZsw9DhTvMVV58VZJNj6146A,867
37
- cocotb/libs/cocotbfli_modelsim.lib,sha256=4ojbh02zpvzkW5anGbUGAidFvCoTx2j9wl3T7eVBBfo,2176
38
- cocotb/libs/cocotbutils.dll,sha256=cg9JjanIitlKhcqFJXDU3_GXDLrZ5Z8Jzeo4NGjmNoo,12288
39
- cocotb/libs/cocotbutils.exp,sha256=WYNDRtifodfduRwcpDCL3T8TCXA71W47En4PdNxO2Is,966
40
- cocotb/libs/cocotbutils.lib,sha256=2DGGM8-pB4w37Rh5ZqLyWY_VQVlK22r1X0k49AyD2YQ,2146
41
- cocotb/libs/cocotbvhpi_aldec.dll,sha256=Cb-Eew_hZFS4ijpwcTwftwc1hjL1MPUZ12HjbXa2KgY,90112
42
- cocotb/libs/cocotbvhpi_aldec.exp,sha256=paa9g3CzvqB_ardg_CLl9MxaG0DgQAaMhezC6zIMBf8,1065
43
- cocotb/libs/cocotbvhpi_aldec.lib,sha256=34rBVWTKPbgh1EMvj3yeudcDfzTKHWg7WWUKZixuJqQ,2442
44
- cocotb/libs/cocotbvhpi_modelsim.dll,sha256=4V-UvO0pH1EcHQDBEp8XfjXcVMQjxczeI2fhyDADFSQ,90112
45
- cocotb/libs/cocotbvhpi_modelsim.exp,sha256=ySipUzZzea640y4S779es87uxDGZCgoBqFn1MmuNsvM,1072
46
- cocotb/libs/cocotbvhpi_modelsim.lib,sha256=XJMrsOrwmk3pOOjuBkGxDqDBTX4ME_2gY-2GYKexVPQ,2484
47
- cocotb/libs/cocotbvpi_aldec.dll,sha256=xy9rEduHtkmwRjIjnFFtCTlSPUBkgzmQ9u4M7j3vTBI,76288
48
- cocotb/libs/cocotbvpi_aldec.exp,sha256=9I7J4iybflResb33FmPJkEWLB7C9NqnPU5U-28S7ShM,1060
49
- cocotb/libs/cocotbvpi_aldec.lib,sha256=n4beLy_YIrgae7_W582eaas89t-RHvJLvLw_pM4ot8I,2418
50
- cocotb/libs/cocotbvpi_ghdl.dll,sha256=n0_LJRSXkZ5gzQjN3vE5nCjxTd-sdFwNwRG5LylU_0k,76288
51
- cocotb/libs/cocotbvpi_ghdl.exp,sha256=zHWEzJCFKcyZOzJVq6Fd_kq3GUgUAyvl6NdFP1UtkOg,1059
52
- cocotb/libs/cocotbvpi_ghdl.lib,sha256=nsFJWjUCrfzV6ZQuCpdrnBzbQ19PrzuewF6BnZbupd4,2408
53
- cocotb/libs/cocotbvpi_icarus.exp,sha256=-wNnMQAs1Ymt5ueoE7tUq0MgaPM_aKuIcwOtJV1Py3E,1063
54
- cocotb/libs/cocotbvpi_icarus.lib,sha256=wNDPfYBAe8muNMggq6HHPfy5uQDetLoAY7M4wrqGWxg,2438
55
- cocotb/libs/cocotbvpi_icarus.vpl,sha256=yYL5Z_498SIBbekBSBoxXzNXnlgyuEz3zR4aNxkshuw,76288
56
- cocotb/libs/cocotbvpi_modelsim.dll,sha256=-za9zCxRZJXMnnwTpGijqlwQsPg3J-8l6tIZ1Lyq3qg,75776
57
- cocotb/libs/cocotbvpi_modelsim.exp,sha256=-TLdIx5MmTIuBsGiNRFZUwoP5NOmr5IAdwrg-wQ7o6I,1067
58
- cocotb/libs/cocotbvpi_modelsim.lib,sha256=4lV20JnbuzZFDqi4gupUbwQzSJJP8LLshVXDNb6vKe4,2468
59
- cocotb/libs/embed.dll,sha256=jL_E8AR1v_Z798dGDVD8iCgjeLsb-g3GqC-aM3ZawXs,12288
60
- cocotb/libs/embed.exp,sha256=3wdXVqIezYkBWEe_EDAHPcz7D8MfDxfz_EWyG9Udc1U,1088
61
- cocotb/libs/embed.lib,sha256=mKhzN_-pJd6iHXHfmRezR1OVJwS8w-joOUpA6nol_k0,2322
62
- cocotb/libs/gpi.dll,sha256=iPoAzf4XPlzfCeAs8gT1qDx0SdA8tJaCPnG5WnzXMes,49664
63
- cocotb/libs/gpi.exp,sha256=ddD5ZD3TQnJ6LqPKJxXnTp-KUh8hBWE5iWVhzFZhQkk,21023
64
- cocotb/libs/gpi.lib,sha256=0Tu1Tmlpajiv55Bg2A8Mp7xjwWInOe5KfMepCASkYd8,34400
65
- cocotb/libs/gpilog.dll,sha256=rCS31xshv4FRRoD8ud7jgiSRPP8TEjWWjIDemowDFRw,16384
66
- cocotb/libs/gpilog.exp,sha256=UQ-qRuNr16pQsPbXFnXenAL6n5BxWZgayz7ospVOyMc,1624
67
- cocotb/libs/gpilog.lib,sha256=WjWZgeawogTxF6H5_s4f1k36HVFPnf-P3eqo4KGuy7Q,3244
68
- cocotb/libs/pygpilog.dll,sha256=uEzTa_hjETTELFMCk2vWchp0KeQy-h8iWXMPpgGH2YY,19456
69
- cocotb/libs/pygpilog.exp,sha256=56i2m1_PaxPiXZT8s_8tRfE3_qcrS0iplXp5HWNPV6g,1035
70
- cocotb/libs/pygpilog.lib,sha256=3WypsQAD31g7_Hmauw0PpsOt2V65YKZ2zQfy1qKV464,2272
71
- cocotb/share/def/.gitignore,sha256=JYPaHghbqtLFl-9QtOWaAHvoDOhVxEewSYwHgoYYgf8,46
72
- cocotb/share/def/README.md,sha256=dptv3zHQGzMqLt3Zv4XOd5IZeGqQS7Lwcq1XCs3BcR0,380
73
- cocotb/share/def/aldec.def,sha256=ItgxVlRaVuD20jGTN3JpkbHEO8jPfU5XjFlUqDUXzlU,991
74
- cocotb/share/def/aldec.exp,sha256=1nhiuUe8W1_E8kZeL4YdLyI-iq6wFHk__zrRaQHkT9k,7938
75
- cocotb/share/def/aldec.lib,sha256=7WJi0n55LwFiAPc5E2O0QJvPCKx2qTFcl24KX6VGz_U,13498
76
- cocotb/share/def/ghdl.def,sha256=ETQh5VI72dWSJi_ig5m163GfLrxScYUamt5BjHjoKsY,705
77
- cocotb/share/def/ghdl.exp,sha256=n5e_F00xJNK-vylyg5OtaobuixI9UzZJvArbtVDbPTE,5763
78
- cocotb/share/def/ghdl.lib,sha256=tAI3ksYcoViXgxbxV33C-JOSHBWar0FiBmlZF4rJIRQ,9974
79
- cocotb/share/def/icarus.def,sha256=VRqkgUyzR2sa916Ra56cZVIb4kzbqDlJVWIOc3389qY,698
80
- cocotb/share/def/icarus.exp,sha256=FQ28x8494YCPxprx_Qx5pdeMfzcswKbByPFixaGl2sU,5753
81
- cocotb/share/def/icarus.lib,sha256=GrMfj06f_T1WHABKwuhnGBoZbVGZrd5u37LAPYYqNeI,9612
82
- cocotb/share/def/modelsim.def,sha256=_6VexHTDM7geGOfedUCm6CLRpXS4DrcHUlP_BQxL1Nc,2389
83
- cocotb/share/def/modelsim.exp,sha256=YPDFcUdAIiDgSAPM8FQbQIP9VoMq9VO_HN3CagZKDBI,16913
84
- cocotb/share/def/modelsim.lib,sha256=uSE2TSXaxCmA3uOFzyokSCdVXKjWoNwiWpkLK95VSBA,28194
85
- cocotb/share/include/cocotb_utils.h,sha256=v3byzF0uZbks5umkKBe-mgB9J3ShtKwam0_S2vIS10A,4091
86
- cocotb/share/include/embed.h,sha256=Fw0szHcAsXyrK_APXxZE-t0ttqmA8IUC72XXYO5yPl8,2509
87
- cocotb/share/include/exports.h,sha256=RRDg9diMCUUJxdzKX0B6TGmQBNttcoVMBVCCLUUKsrA,677
88
- cocotb/share/include/gpi.h,sha256=FvlF0QQD1rfy_jZ6Q_EnUpymNz7BtrGCgunXV8hg40k,10264
89
- cocotb/share/include/gpi_logging.h,sha256=_Z00YAtMqSr5Mk3WSQ0YjQ5nyPvsxA5vmou1G8lX-B4,10553
90
- cocotb/share/include/py_gpi_logging.h,sha256=zuuDIsKCdLOfUwOMv5EzeQWHuM0PaHzYE1kIH6TSWys,672
91
- cocotb/share/include/vhpi_user_ext.h,sha256=VLXbA-oeO83mL1vR0e4Ye0zMe5ijIaXnvT2FRFgsYDY,654
92
- cocotb/share/include/vpi_user_ext.h,sha256=ofqT24X1KOLeIDowuZxKDYvCTgXAy_RzMz5-_LjSZas,2511
93
- cocotb/share/lib/verilator/verilator.cpp,sha256=YSgErhCJUqKkuVIYHZhd9wNVASCwbsMwSzxrhbjolL4,5930
94
- cocotb/share/makefiles/Makefile.deprecations,sha256=83TZ1sYlXpVL5erEAr1Y0ZknoX-3vVn5gcwHwaAf30k,428
95
- cocotb/share/makefiles/Makefile.inc,sha256=C9tqM_q9ApnznJ4BE4vB1TDmfvXhP6WzFfwFpFeu8g4,6886
96
- cocotb/share/makefiles/Makefile.sim,sha256=ZcH75xfEH-8tr3ep_Nt64R5F-sRKFWucxodGNx0g8UY,5406
97
- cocotb/share/makefiles/simulators/Makefile.activehdl,sha256=mnyJnKS_kFt0GRQMvTIsxQrS7cX7l17mu1BosvJy9j8,2703
98
- cocotb/share/makefiles/simulators/Makefile.cvc,sha256=FyoJAf3S69441uHa94zO8PYNn6mhG2wJrfAF-B8GTEI,4013
99
- cocotb/share/makefiles/simulators/Makefile.ghdl,sha256=SzBp8k9zoCnf-YS4AGMRLZAmlmglfF8us1fGimqoDK8,4849
100
- cocotb/share/makefiles/simulators/Makefile.icarus,sha256=rP0b4s74sjGJHf5fY8YZXF3vRI_hkonTOAp09t3D4pw,4478
101
- cocotb/share/makefiles/simulators/Makefile.ius,sha256=ddE1WNJjjqhsCYX4h0UFYxanVTWeuaAj5w4cHBy7wrE,5076
102
- cocotb/share/makefiles/simulators/Makefile.modelsim,sha256=MQYmRb59nvUkY_f7GXUQVEYXQnU4IWA2-_G0N08StuI,1938
103
- cocotb/share/makefiles/simulators/Makefile.nvc,sha256=67ExfYS0a94yl2zapb-dqAwjbAsH7w_pbYnaXSUT1Zc,2187
104
- cocotb/share/makefiles/simulators/Makefile.questa,sha256=QTWA-54yrG7tuzXDBCx5eKmRXaC77vs7Il89xDNkG5I,6581
105
- cocotb/share/makefiles/simulators/Makefile.riviera,sha256=h0Rvkedvxn9r5lsCXi9kgeRfZrCdqXhITx-6TOprHNU,6841
106
- cocotb/share/makefiles/simulators/Makefile.vcs,sha256=nT_Qang2qJg7XOF2ljeBpZSmfcw3mTu50LKz6Ltu2jI,3843
107
- cocotb/share/makefiles/simulators/Makefile.verilator,sha256=f6yGtKg1_auBgtjqrLqf2XpbwOSD8nWwlPG6Amed-2A,2710
108
- cocotb/share/makefiles/simulators/Makefile.xcelium,sha256=MDHygJhSRuMBiDcGlLXF26E2yNGO79utOiGmE0sJTFA,5762
109
- cocotb/types/__init__.py,sha256=-M5mR--OWtFZ7Y4pjxB9CF4kmFtroDR7kzz1ba6h0No,1853
110
- cocotb/types/array.py,sha256=JAg5YB84WwERF7S5SK16HvmzCYJgmc5trLATJT3TIqo,11208
111
- cocotb/types/logic.py,sha256=PH5zocv9SpJam9Scc8Cl3uiDtPdtixhbiVLXjJPsPW8,8791
112
- cocotb/types/logic_array.py,sha256=0XpStXNA7qY8FIoamb-dnn-IbzIOXIBoxd0tiWMlhVE,10255
113
- cocotb/types/range.py,sha256=f25nic3X8jpd14nFU61D3izEOT77zPF_txZkWNrZ7N8,6428
114
- pygpi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
115
- pygpi/entry.py,sha256=LDJ8WK-s9nY_A5GEvPUuJTvnGqZvkhOe7i_yGQmqrI0,972
116
- cocotb-1.9.1.dist-info/LICENSE,sha256=oBp8aKF9rhLjG78uW4zxmiVsjA8Viwwdyj3nSbEXpmc,1570
117
- cocotb-1.9.1.dist-info/METADATA,sha256=3Amc8HquVPAcvFXI92zrfVidUnPDPMtD_1F2KsA-R_0,6802
118
- cocotb-1.9.1.dist-info/WHEEL,sha256=zukbZftcRdNfJ55Q_RYV9JZ3uVyqWKyq-wDJbmszs_U,101
119
- cocotb-1.9.1.dist-info/entry_points.txt,sha256=kFnPpuolM06cgf3C7fa5JZS4vzADkrxfr0dmBvgtaYg,54
120
- cocotb-1.9.1.dist-info/top_level.txt,sha256=w-hmA_Ca52PldJkt5ya7gRP9tpUXfeJUGLMfXdv5Ez4,393
121
- cocotb-1.9.1.dist-info/RECORD,,
@@ -1,3 +0,0 @@
1
- [console_scripts]
2
- cocotb-config = cocotb.config:main
3
-
File without changes
File without changes