- 12 May, 2009 2 commits
-
-
Tarek Ziadé authored
-
R. David Murray authored
when objects are assigned back to it when writeback is False.
-
- 11 May, 2009 4 commits
-
-
Michael Foord authored
-
Michael Foord authored
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 authored
-
Tarek Ziadé authored
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 commits
-
-
Benjamin Peterson authored
-
Tarek Ziadé authored
-
Benjamin Peterson authored
-
Tarek Ziadé authored
-
Tarek Ziadé authored
-
Tarek Ziadé authored
-
Tarek Ziadé authored
-
Tarek Ziadé authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
- 09 May, 2009 12 commits
-
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Vinay Sajip authored
Issue #5971: StreamHandler.handleError now swallows IOErrors which occur when trying to print a traceback.
-
Tarek Ziadé authored
-
Tarek Ziadé authored
Fixed Issue 5900: distutils.command.build_ext - Ensure RUNPATH is added to extension modules with RPATH if GNU ld is used
-
Benjamin Peterson authored
-
Benjamin Peterson authored
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 commits
-
-
-
Jeffrey Yasskin authored
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 authored
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 authored
trailing whitespace).
-
Thomas Heller authored
files in this repository. Should make it easier to merge new libffi versions.
-
Benjamin Peterson authored
-
Jeroen Ruigrok van der Werven authored
-
Jeroen Ruigrok van der Werven authored
-
Georg Brandl authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Philip Jenvey authored
-