aboutsummaryrefslogtreecommitdiff
path: root/lib/dump.py
diff options
context:
space:
mode:
authorSkip Montanaro <[email protected]>2021-02-16 20:14:16 -0600
committerSkip Montanaro <[email protected]>2021-02-16 20:14:16 -0600
commitc2587c76f1b416cdbecb979e54941933246bf856 (patch)
treebb61ee9128075ce22af4eafa232f13c2e5a07896 /lib/dump.py
parentd90761a005b24018ae237bf551515772a1de656f (diff)
downloadpython-0.9.1-patched-QoL-c2587c76f1b416cdbecb979e54941933246bf856.tar.xz
python-0.9.1-patched-QoL-c2587c76f1b416cdbecb979e54941933246bf856.zip
starting over
Diffstat (limited to 'lib/dump.py')
-rw-r--r--lib/dump.py60
1 files changed, 30 insertions, 30 deletions
diff --git a/lib/dump.py b/lib/dump.py
index 0510092..cecc275 100644
--- a/lib/dump.py
+++ b/lib/dump.py
@@ -23,41 +23,41 @@
# Dump a whole symbol table
#
def dumpsymtab(dict):
- for key in dict.keys():
- dumpvar(key, dict[key])
+ for key in dict.keys():
+ dumpvar(key, dict[key])
# Dump a single variable
#
def dumpvar(name, x):
- import sys
- t = type(x)
- if t = type({}):
- print name, '= {}'
- for key in x.keys():
- item = x[key]
- if not printable(item):
- print '#',
- print name, '[', `key`, '] =', `item`
- elif t in (type(''), type(0), type(0.0), type([]), type(())):
- if not printable(x):
- print '#',
- print name, '=', `x`
- elif t = type(sys):
- print 'import', name, '#', x
- else:
- print '#', name, '=', x
+ import sys
+ t = type(x)
+ if t = type({}):
+ print name, '= {}'
+ for key in x.keys():
+ item = x[key]
+ if not printable(item):
+ print '#',
+ print name, '[', `key`, '] =', `item`
+ elif t in (type(''), type(0), type(0.0), type([]), type(())):
+ if not printable(x):
+ print '#',
+ print name, '=', `x`
+ elif t = type(sys):
+ print 'import', name, '#', x
+ else:
+ print '#', name, '=', x
# check if a value is printable in a way that can be read back with input()
#
def printable(x):
- t = type(x)
- if t in (type(''), type(0), type(0.0)):
- return 1
- if t in (type([]), type(())):
- for item in x:
- if not printable(item):
- return 0
- return 1
- if x = {}:
- return 1
- return 0
+ t = type(x)
+ if t in (type(''), type(0), type(0.0)):
+ return 1
+ if t in (type([]), type(())):
+ for item in x:
+ if not printable(item):
+ return 0
+ return 1
+ if x = {}:
+ return 1
+ return 0