commit | 8ecfc8ef9d6ffe0d9c732a438cb36e1e11480a19 | [log] [tgz] |
---|---|---|
author | Tim Peters <tim.peters@gmail.com> | Mon Jan 27 18:51:48 2003 +0000 |
committer | Tim Peters <tim.peters@gmail.com> | Mon Jan 27 18:51:48 2003 +0000 |
tree | 2794324a22ccdf5b32a8b9ebf7f8f49c6824daae | |
parent | 40e1ce4d73f8843b937465e93f639c00b0a73597 [diff] |
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>.
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)