Skip to content

Commit c126e8a

Browse files
committed
Merged revisions 55514-55544 via svnmerge from
svn+ssh://[email protected]/python/branches/p3yk ........ r55526 | neal.norwitz | 2007-05-22 23:42:22 -0700 (Tue, 22 May 2007) | 1 line reduce was removed a while ago ........ r55544 | guido.van.rossum | 2007-05-23 19:23:53 -0700 (Wed, 23 May 2007) | 2 lines Fix test_inspect. It seems my previous "fix" was due to a stale .pyc file. ........
1 parent c2f93dc commit c126e8a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Lib/test/test_inspect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ class TestDecorators(GetSourceBase):
219219
fodderFile = mod2
220220

221221
def test_wrapped_decorator(self):
222-
self.assertSourceEqual(mod2.wrapped, 14, 17)
222+
self.assertSourceEqual(mod2.wrapped, 16, 17)
223223

224224
def test_replacing_decorator(self):
225225
self.assertSourceEqual(mod2.gone, 9, 10)

Misc/NEWS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ Core and Builtins
135135
backticks (ie, `x`), <>
136136

137137
- Removed these Python builtins:
138-
apply(), callable(), coerce(), file()
138+
apply(), callable(), coerce(), file(), reduce()
139139

140140
- Removed these Python methods:
141141
{}.has_key

0 commit comments

Comments
 (0)