- 14 May, 2009 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 13 May, 2009 5 kayıt (commit)
-
-
Tarek Ziadé yazdı
-
Tarek Ziadé yazdı
-
R. David Murray yazdı
file is a binary. Patch by Brodie Rao, test by Daniel Diniz.
-
R. David Murray yazdı
from docstring.
-
R. David Murray yazdı
-
- 12 May, 2009 6 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
Tarek Ziadé yazdı
-
Michael Foord yazdı
Better fix for modules using unittest.main(). Fixes regression caused by commit for issue 5995. Michael Foord
-
Michael Foord yazdı
Fix to restore command line behaviour for test modules using unittest.main(). Regression caused by issue 5995. Michael
-
Tarek Ziadé yazdı
-
R. David Murray yazdı
when objects are assigned back to it when writeback is False.
-
- 11 May, 2009 4 kayıt (commit)
-
-
Michael Foord yazdı
-
Michael Foord yazdı
Adds a verbosity keyword argument to unittest.main plus a minor fix allowing you to specify test modules / classes from the command line. Closes issue 5995. Michael Foord
-
Mark Dickinson yazdı
-
Tarek Ziadé yazdı
distutils.test_build_clib added a new line at the end of the file, to avoid a warning with some compilers
-
- 10 May, 2009 10 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
Tarek Ziadé yazdı
-
Benjamin Peterson yazdı
-
Tarek Ziadé yazdı
-
Tarek Ziadé yazdı
-
Tarek Ziadé yazdı
-
Tarek Ziadé yazdı
-
Tarek Ziadé yazdı
-
Benjamin Peterson yazdı
-
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 2 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.