remove so-far superflous _getcode and pickle from builtins, some streamlining

--HG--
branch : trunk
This commit is contained in:
holger krekel
2009-09-04 16:32:49 +02:00
parent 99af33b26d
commit 45b98d4915
7 changed files with 11 additions and 23 deletions

View File

@@ -98,7 +98,7 @@ class TestLocalPath(common.CommonFSTests):
d = {'answer' : 42}
path.dump(d, bin=bin)
f = path.open('rb+')
dnew = py.builtin.pickle.load(f)
dnew = py.std.pickle.load(f)
assert d == dnew
finally:
f.close()