[Python-checkins] r45265 - python/trunk/Lib/inspect.py
neal.norwitz
python-checkins at python.org
Tue Apr 11 09:17:10 CEST 2006
Author: neal.norwitz
Date: Tue Apr 11 09:17:08 2006
New Revision: 45265
Modified:
python/trunk/Lib/inspect.py
Log:
Add whitespace after comma
Modified: python/trunk/Lib/inspect.py
==============================================================================
--- python/trunk/Lib/inspect.py (original)
+++ python/trunk/Lib/inspect.py Tue Apr 11 09:17:08 2006
@@ -353,7 +353,7 @@
if 'b' in mode and string.lower(filename[-len(suffix):]) == suffix:
# Looks like a binary file. We want to only return a text file.
return None
- if os.path.exists(filename) or hasattr(getmodule(object),'__loader__'):
+ if os.path.exists(filename) or hasattr(getmodule(object), '__loader__'):
return filename
def getabsfile(object):
More information about the Python-checkins
mailing list