[pypy-commit] pypy py3k: 2to3

pjenvey noreply at buildbot.pypy.org
Thu Apr 25 03:04:57 CEST 2013


Author: Philip Jenvey <pjenvey at underboss.org>
Branch: py3k
Changeset: r63599:ef1505d5cddd
Date: 2013-04-24 10:49 -0700
http://bitbucket.org/pypy/pypy/changeset/ef1505d5cddd/

Log:	2to3

diff --git a/pypy/module/_multiprocessing/test/test_win32.py b/pypy/module/_multiprocessing/test/test_win32.py
--- a/pypy/module/_multiprocessing/test/test_win32.py
+++ b/pypy/module/_multiprocessing/test/test_win32.py
@@ -39,7 +39,7 @@
 
         try:
             win32.ConnectNamedPipe(readhandle, win32.NULL)
-        except WindowsError, e:
+        except WindowsError as e:
             if e.args[0] != win32.ERROR_PIPE_CONNECTED:
                 raise
 


More information about the pypy-commit mailing list