summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2003-01-27 18:51:48 (GMT)
committerTim Peters <tim.peters@gmail.com>2003-01-27 18:51:48 (GMT)
commit8ecfc8ef9d6ffe0d9c732a438cb36e1e11480a19 (patch)
tree2794324a22ccdf5b32a8b9ebf7f8f49c6824daae /Lib/test
parent40e1ce4d73f8843b937465e93f639c00b0a73597 (diff)
downloadcpython-8ecfc8ef9d6ffe0d9c732a438cb36e1e11480a19.zip
cpython-8ecfc8ef9d6ffe0d9c732a438cb36e1e11480a19.tar.gz
cpython-8ecfc8ef9d6ffe0d9c732a438cb36e1e11480a19.tar.bz2
Moving pickletools.py from the sandbox into the std library. I started
this over the weekend, and it made faster & better progress than I expected -- it's already useful <wink>.
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_pickletools.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_pickletools.py b/Lib/test/test_pickletools.py
new file mode 100644
index 0000000..2e2fe50
--- /dev/null
+++ b/Lib/test/test_pickletools.py
@@ -0,0 +1,3 @@
+import pickletools
+from test import test_support
+test_support.run_doctest(pickletools)