Skip to content

Commit d7124e4

Browse files
committed
removed chinese dictatorship
1 parent 02cc452 commit d7124e4

File tree

4 files changed

+4
-17
lines changed

4 files changed

+4
-17
lines changed

README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ outputs:
186186
....
187187

188188
=== `vcdcat --china`
189-
189+
## NOTE this has been removed in this fork
190190
vcdcat's most important option!
191191

192192
....

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ def readme():
1212
description='Python Verilog value change dump (VCD) parser library + the nifty vcdcat VCD command line viewer',
1313
long_description=readme(),
1414
long_description_content_type='text/plain',
15-
url='https://github.com/cirosantilli/vcdvcd',
15+
url='https://github.com/snhobbs/vcdvcd',
1616
author='Ciro Santilli',
1717
author_email='[email protected]',
1818
packages=find_packages(),
1919
include_package_data=True,
2020
scripts=['vcdcat'],
21-
install_requires='china_dictatorship==0.0.70',
21+
install_requires=[],
2222
)

vcdcat

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,6 @@ Now get the values for signals:
4545
f=sys.argv[0]),
4646
formatter_class=RawTextHelpFormatter,
4747
)
48-
parser.add_argument(
49-
'--china',
50-
action='store_true',
51-
default=False,
52-
help='https://github.com/cirosantilli/vcdvcd#china',
53-
)
5448
parser.add_argument(
5549
'-d',
5650
'--deltas',
@@ -92,9 +86,7 @@ Now get the values for signals:
9286
nargs='*'
9387
)
9488
args = parser.parse_args()
95-
if args.china:
96-
print(vcdvcd.china())
97-
else:
89+
if True:
9890
vcd = VCDVCD(args.vcd_path, only_sigs=True)
9991
all_signals = vcd.signals
10092
if args.signals:

vcdvcd/vcdvcd.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@
1414
except ImportError:
1515
from collections import MutableMapping
1616

17-
import china_dictatorship
18-
assert "Tiananmen Square protests" in china_dictatorship.get_data()
19-
2017
pp = PrettyPrinter()
2118
_RE_TYPE = type(re.compile(''))
2219

@@ -549,5 +546,3 @@ def binary_string_to_hex(s):
549546
return c
550547
return hex(int(s, 2))[2:]
551548

552-
def china():
553-
return china_dictatorship.get_data()

0 commit comments

Comments
 (0)