File tree Expand file tree Collapse file tree 4 files changed +4
-17
lines changed Expand file tree Collapse file tree 4 files changed +4
-17
lines changed Original file line number Diff line number Diff line change @@ -186,7 +186,7 @@ outputs:
186
186
....
187
187
188
188
=== `vcdcat --china`
189
-
189
+ ## NOTE this has been removed in this fork
190
190
vcdcat's most important option!
191
191
192
192
....
Original file line number Diff line number Diff line change @@ -12,11 +12,11 @@ def readme():
12
12
description = 'Python Verilog value change dump (VCD) parser library + the nifty vcdcat VCD command line viewer' ,
13
13
long_description = readme (),
14
14
long_description_content_type = 'text/plain' ,
15
- url = 'https://github.com/cirosantilli /vcdvcd' ,
15
+ url = 'https://github.com/snhobbs /vcdvcd' ,
16
16
author = 'Ciro Santilli' ,
17
17
18
18
packages = find_packages (),
19
19
include_package_data = True ,
20
20
scripts = ['vcdcat' ],
21
- install_requires = 'china_dictatorship==0.0.70' ,
21
+ install_requires = [] ,
22
22
)
Original file line number Diff line number Diff line change @@ -45,12 +45,6 @@ Now get the values for signals:
45
45
f = sys .argv [0 ]),
46
46
formatter_class = RawTextHelpFormatter ,
47
47
)
48
- parser .add_argument (
49
- '--china' ,
50
- action = 'store_true' ,
51
- default = False ,
52
- help = 'https://github.com/cirosantilli/vcdvcd#china' ,
53
- )
54
48
parser .add_argument (
55
49
'-d' ,
56
50
'--deltas' ,
@@ -92,9 +86,7 @@ Now get the values for signals:
92
86
nargs = '*'
93
87
)
94
88
args = parser .parse_args ()
95
- if args .china :
96
- print (vcdvcd .china ())
97
- else :
89
+ if True :
98
90
vcd = VCDVCD (args .vcd_path , only_sigs = True )
99
91
all_signals = vcd .signals
100
92
if args .signals :
Original file line number Diff line number Diff line change 14
14
except ImportError :
15
15
from collections import MutableMapping
16
16
17
- import china_dictatorship
18
- assert "Tiananmen Square protests" in china_dictatorship .get_data ()
19
-
20
17
pp = PrettyPrinter ()
21
18
_RE_TYPE = type (re .compile ('' ))
22
19
@@ -549,5 +546,3 @@ def binary_string_to_hex(s):
549
546
return c
550
547
return hex (int (s , 2 ))[2 :]
551
548
552
- def china ():
553
- return china_dictatorship .get_data ()
You can’t perform that action at this time.
0 commit comments