An error occurred fetching the project authors.
- 09 Aug, 2011 2 commits
-
-
Benjamin Peterson authored
-
Raymond Hettinger authored
-
- 03 Aug, 2011 2 commits
-
-
Senthil Kumaran authored
-
Ned Deily authored
in os.kill(). Original patch by Eli Bendersky.
-
- 02 Aug, 2011 3 commits
-
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
- 01 Aug, 2011 1 commit
-
-
Nadeem Vawda authored
This will be particularly useful to Windows users. run_tests.py originally written by Brett Cannon.
-
- 31 Jul, 2011 3 commits
-
-
Éric Araujo authored
This prevents tests from failing when run from a Python installed in a read-only directory. The code is a bit uglier; shutil.copytree calls copystat on directories behind our back, so I had to add an os.walk with os.chmod (*and* os.path.join!) calls. shutil, I am disappoint. This changeset is dedicated to the hundreds of neurons that were lost while I was debugging this on an otherwise fine afternoon.
-
Éric Araujo authored
This prevents tests from failing when run from a Python installed in a read-only directory.
-
Éric Araujo authored
The changed behavior of sdist in 3.1 broke packaging for projects that wanted to use a manually-maintained MANIFEST file (instead of having a MANIFEST.in template and letting distutils generate the MANIFEST). The fixes that were committed for #8688 (76643c286b9f by Tarek and d54da9248ed9 by me) did not fix all issues exposed in the bug report, and also added one problem: the MANIFEST file format gained comments, but the read_manifest method was not updated to handle (i.e. ignore) them. This changeset should fix everything; the tests have been expanded and I successfully tested the 2.7 version with Mercurial, which suffered from this regression. I have grouped the versionchanged directives for these bugs in one place and added micro version numbers to help users know the quirks of the exact version they’re using. Initial report, thorough diagnosis and patch by John Dennis, further work on the patch by Stephen Thorne, and a few edits and additions by me.
-
- 30 Jul, 2011 1 commit
-
-
Senthil Kumaran authored
Fix closes Issue11281 - smtplib.STMP gets source_address parameter, which adds the ability to bind to specific source address on a machine with multiple interfaces. Patch by Paulo Scardine.
-
- 29 Jul, 2011 9 commits
-
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Antoine Pitrou authored
with the `-m` (or `--match`) option. This works with all test cases using the unittest module. This is useful with long test suites such as test_io or test_subprocess.
-
Benjamin Peterson authored
-
Charles-François Natali authored
fix it. Patch by Petri Lehtinen.
-
Éric Araujo authored
-
Raymond Hettinger authored
-
Eli Bendersky authored
As a side effect, this now allows the rjust, ljust and center methods of bytes and bytearray to accept a bytearray argument. Patch by Petri Lehtinen
-
Éric Araujo authored
-
- 28 Jul, 2011 1 commit
-
-
Raymond Hettinger authored
-
- 27 Jul, 2011 6 commits
-
-
Éric Araujo authored
The public names (Thread, Condition, etc.) used to be factory functions returning instances of hidden classes (_Thread, _Condition, etc.), because (if Guido recalls correctly) this code pre-dates the ability to subclass extension types. It is now possible to inherit from Thread and other classes, without having to import the private underscored names like multiprocessing did. A doc update will follow: a patch is under discussion on the issue.
-
Charles-François Natali authored
-
Éric Araujo authored
This function used to live as pipes.quote, where it was undocumented but used anyway. (An alias still exists for backward compatibility.) The tests have been moved as is, but the code of the function was changed to use a regex instead of a loop with string comparisons (at Ian Bicking’s suggestion). I’m terrible at regexes, so any feedback is welcome.
-
Ross Lagerwall authored
given as a low fd, it gets overwritten.
-
Ned Deily authored
when opening a long file. With Tk 8.5, the first line was hidden.
-
Senthil Kumaran authored
Fix closes Issue12576 - fix urlopen behavior on sites which do not send (or obsfuscates) Connection: Close header.
-
- 26 Jul, 2011 3 commits
-
-
Jason R. Coombs authored
Issue #10639: reindent.py tool now accepts a --newline option to specify the newline to be used in the output of converted files.
-
Éric Araujo authored
I would have put io and ctypes fixes into Extension Modules, but I respected the choice of Antoine or Victor and left them in Library.
-
Jason R. Coombs authored
reindent.py now will use the newline detected in the original file and will report an error if mixed newlines are encountered.
-
- 25 Jul, 2011 1 commit
-
-
Ross Lagerwall authored
with mmap. Patch by Steffen Daode Nurpmeso.
-
- 24 Jul, 2011 2 commits
-
-
Charles-François Natali authored
-
Antoine Pitrou authored
-
- 23 Jul, 2011 4 commits
-
-
Antoine Pitrou authored
running in verbose mode (`-v` or `-W`), by using the `--failfast` (or `-G`) option to regrtest. This is useful with long test suites such as test_io or test_subprocess.
-
Antoine Pitrou authored
module: the piped streams can now be properly read from or written to. (this was broken due to the 2.x to 3.x transition; communicate() support is still sketchy)
-
Antoine Pitrou authored
a read1() method), and add an undocumented *write_through* parameter to mandate unbuffered writes.
-
Nadeem Vawda authored
-
- 22 Jul, 2011 2 commits
-
-
Charles-François Natali authored
releases).
-
Charles-François Natali authored
-