- 10 May, 2009 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 09 May, 2009 12 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Vinay Sajip yazdı
Issue #5971: StreamHandler.handleError now swallows IOErrors which occur when trying to print a traceback.
-
Tarek Ziadé yazdı
-
Tarek Ziadé yazdı
Fixed Issue 5900: distutils.command.build_ext - Ensure RUNPATH is added to extension modules with RPATH if GNU ld is used
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r72491 | benjamin.peterson | 2009-05-08 19:33:27 -0500 (Fri, 08 May 2009) | 7 lines make 2to3 use unicode internally on 2.x This started out as a fix for #2660, but became this large refactoring when I realized the dire state this was in. 2to3 now uses tokenize.detect_encoding to decode the files correctly into unicode. ........ r72492 | benjamin.peterson | 2009-05-08 19:35:38 -0500 (Fri, 08 May 2009) | 1 line remove compat code ........ r72493 | benjamin.peterson | 2009-05-08 19:54:15 -0500 (Fri, 08 May 2009) | 1 line add a test for \r\n newlines ........
-
- 08 May, 2009 12 kayıt (commit)
-
-
Jeffrey Yasskin yazdı
Most uses of PyCode_Addr2Line (http://www.google.com/codesearch?q=PyCode_Addr2Line) are just trying to get the line number of a specified frame, but there's no way to do that directly. Forcing people to go through the code object makes them know more about the guts of the interpreter than they should need. The remaining uses of PyCode_Addr2Line seem to be getting the line from a traceback (for example, http://www.google.com/codesearch/p?hl=en#u_9_nDrchrw/pygame-1.7.1release/src/base.c&q=PyCode_Addr2Line), which is replaced by the tb_lineno field. So we may be able to deprecate PyCode_Addr2Line entirely for external use.
-
Jeffrey Yasskin yazdı
Most uses of PyCode_New found by http://www.google.com/codesearch?q=PyCode_New are trying to build an empty code object, usually to put it in a dummy frame object. This patch adds a PyCode_NewEmpty wrapper which lets the user specify just the filename, function name, and first line number, instead of also requiring lots of code internals.
-
Mark Dickinson yazdı
trailing whitespace).
-
Thomas Heller yazdı
files in this repository. Should make it easier to merge new libffi versions.
-
Benjamin Peterson yazdı
-
-
-
Georg Brandl yazdı
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Philip Jenvey yazdı
- 07 May, 2009 11 kayıt (commit)
-
-
Tarek Ziadé yazdı
-
Tarek Ziadé yazdı
-
Tarek Ziadé yazdı
-
Tarek Ziadé yazdı
-
Eric Smith yazdı
-
R. David Murray yazdı
-
R. David Murray yazdı
-
R. David Murray yazdı
now it does. This also means getfp method now returns the real fp.
-
Benjamin Peterson yazdı
-
R. David Murray yazdı
-
R. David Murray yazdı
is_multipart is False.
-
- 06 May, 2009 4 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
-
Walter Dörwald yazdı
-
Walter Dörwald yazdı
consumed like any other encoder (instead of the number of bytes).
-
Requested by: Antoine Pitrou
-