[pypy-svn] r40019 - pypy/dist/pypy/lib
arigo at codespeak.net
arigo at codespeak.net
Wed Mar 7 12:22:44 CET 2007
Author: arigo
Date: Wed Mar 7 12:22:43 2007
New Revision: 40019
Modified:
pypy/dist/pypy/lib/_functools.py
Log:
Remove tab.
Modified: pypy/dist/pypy/lib/_functools.py
==============================================================================
--- pypy/dist/pypy/lib/_functools.py (original)
+++ pypy/dist/pypy/lib/_functools.py Wed Mar 7 12:22:43 2007
@@ -3,7 +3,7 @@
class partial:
"""
partial(func, *args, **keywords) - new function with partial application
- of the given arguments and keywords.
+ of the given arguments and keywords.
"""
__slots__ = ['func', 'args', 'keywords']
More information about the Pypy-commit
mailing list