[Python-checkins] r75473 - in python/branches/release31-maint: Lib/codeop.py

benjamin.peterson python-checkins at python.org
Sun Oct 18 02:34:08 CEST 2009


Author: benjamin.peterson
Date: Sun Oct 18 02:34:08 2009
New Revision: 75473

Log:
Merged revisions 75472 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r75472 | benjamin.peterson | 2009-10-17 19:32:49 -0500 (Sat, 17 Oct 2009) | 1 line
  
  correct porting error with raise #7161
........


Modified:
   python/branches/release31-maint/   (props changed)
   python/branches/release31-maint/Lib/codeop.py

Modified: python/branches/release31-maint/Lib/codeop.py
==============================================================================
--- python/branches/release31-maint/Lib/codeop.py	(original)
+++ python/branches/release31-maint/Lib/codeop.py	Sun Oct 18 02:34:08 2009
@@ -96,7 +96,7 @@
     if code:
         return code
     if not code1 and repr(err1) == repr(err2):
-        raise SyntaxError(err1)
+        raise err1
 
 def _compile(source, filename, symbol):
     return compile(source, filename, symbol, PyCF_DONT_IMPLY_DEDENT)


More information about the Python-checkins mailing list