#17526: merge with 3.3.

This commit is contained in:
Ezio Melotti 2013-03-30 05:19:06 +02:00
commit 0503de9c83
3 changed files with 10 additions and 1 deletions

View file

@ -550,7 +550,7 @@ def findsource(object):
file = getfile(object)
sourcefile = getsourcefile(object)
if not sourcefile and file[0] + file[-1] != '<>':
if not sourcefile and file[:1] + file[-1:] != '<>':
raise OSError('source code not available')
file = sourcefile if sourcefile else file