diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2008-01-26 21:52:30 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2008-01-26 21:52:30 (GMT) |
commit | 6ff93fee5fc1645ec00471ecdc53d1f965caf255 (patch) | |
tree | db1daafe2a14f1527598034ca8e0e2d36d261b33 | |
parent | 2f1425819667cc4a2e87f6843e2fbf920953cd6b (diff) | |
download | cpython-6ff93fee5fc1645ec00471ecdc53d1f965caf255.zip cpython-6ff93fee5fc1645ec00471ecdc53d1f965caf255.tar.gz cpython-6ff93fee5fc1645ec00471ecdc53d1f965caf255.tar.bz2 |
Get this test to run
-rw-r--r-- | Lib/test/test_rational.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_rational.py b/Lib/test/test_rational.py index 49868dd..729527f 100644 --- a/Lib/test/test_rational.py +++ b/Lib/test/test_rational.py @@ -7,7 +7,7 @@ import operator import rational import unittest from copy import copy, deepcopy -from cPickle import dumps, loads +from pickle import dumps, loads R = rational.Rational def _components(r): |