diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2011-03-28 02:11:19 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2011-03-28 02:11:19 +0000 |
| commit | 13864703bc1d5dd4dac63c96c6a4b42a392bc57f (patch) | |
| tree | 64d070fb754332d47afc310daef2671c54e17988 /django/dispatch | |
| parent | a87be3554fc73a567b926ea51c13ea844b5113f8 (diff) | |
Removed a bunch more Python 2.4 workarounds now that we don't support that version. Refs #15702 -- thanks to jonash for the patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15927 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/dispatch')
| -rw-r--r-- | django/dispatch/saferef.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/dispatch/saferef.py b/django/dispatch/saferef.py index 8bcfd8a140..f446447b46 100644 --- a/django/dispatch/saferef.py +++ b/django/dispatch/saferef.py @@ -230,7 +230,7 @@ class BoundNonDescriptorMethodWeakref(BoundMethodWeakref): if target is not None: function = self.weakFunc() if function is not None: - # Using curry() would be another option, but it erases the + # Using partial() would be another option, but it erases the # "signature" of the function. That is, after a function is # curried, the inspect module can't be used to determine how # many arguments the function expects, nor what keyword |
