Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #12802: the Windows error ERROR_DIRECTORY (numbered 267) is now | Antoine Pitrou | 2011-09-01 | 1 | -0/+3 |
| | | | | mapped to POSIX errno ENOTDIR (previously EINVAL). | ||||
* | accept bytes for the AST 'string' type | Benjamin Peterson | 2011-09-01 | 1 | -0/+3 |
| | | | | This is a temporary kludge and all is well in 3.3. | ||||
* | Issue #11241: subclasses of ctypes.Array can now be subclassed. | Amaury Forgeot d'Arc | 2011-08-30 | 1 | -0/+2 |
| | |||||
* | Issue #9651: Fix a crash when ctypes.create_string_buffer(0) was passed to | Amaury Forgeot d'Arc | 2011-08-30 | 1 | -0/+3 |
| | | | | some functions like file.write(). | ||||
* | Branch merge | Éric Araujo | 2011-08-30 | 1 | -0/+3 |
|\ | |||||
| * | Make bdist_* commands respect --skip-build passed to bdist (#10946) | Éric Araujo | 2011-08-29 | 1 | -0/+3 |
| | | |||||
* | | Issue #12847: Fix a crash with negative PUT and LONG_BINPUT arguments in | Antoine Pitrou | 2011-08-29 | 1 | -0/+3 |
| | | | | | | | | the C pickle implementation. | ||||
* | | Issue #11564: Avoid crashes when trying to pickle huge objects or containers | Antoine Pitrou | 2011-08-29 | 1 | -0/+3 |
|/ | | | | (more than 2**31 items). Instead, in most cases, an OverflowError is raised. | ||||
* | Issue #12287: Fix a stack corruption in ossaudiodev module when the FD is | Charles-François Natali | 2011-08-28 | 1 | -0/+3 |
| | | | | greater than FD_SETSIZE. | ||||
* | Issue #12839: Fix crash in zlib module due to version mismatch. | Nadeem Vawda | 2011-08-28 | 2 | -0/+4 |
| | | | | | | | | | If the version of zlib used to compile the zlib module is incompatible with the one that is actually linked in, then calls into zlib will fail. This can leave attributes of the z_stream uninitialized, so we must take care to avoid segfaulting by trying to use an invalid pointer. Fix by Richard M. Tew. | ||||
* | Merge | Antoine Pitrou | 2011-08-23 | 1 | -0/+6 |
|\ | |||||
| * | Issue #12821: Fix test_fcntl failures on OpenBSD 5. | Charles-François Natali | 2011-08-23 | 1 | -0/+6 |
| | | |||||
* | | Issue #11657: Fix sending file descriptors over 255 over a multiprocessing Pipe. | Antoine Pitrou | 2011-08-23 | 1 | -0/+3 |
|/ | | | | Also added some tests. | ||||
* | #9200: The str.is* methods now work with strings that contain non-BMP ↵ | Ezio Melotti | 2011-08-22 | 1 | -0/+3 |
| | | | | characters even in narrow Unicode builds. | ||||
* | Issue #12678: Fix distutils sdist test on Windows. | Nadeem Vawda | 2011-08-21 | 1 | -0/+1 |
| | | | | Patch by Jeremy Kloth. | ||||
* | Issue #12213: Fix a buffering bug with interleaved reads and writes that | Antoine Pitrou | 2011-08-20 | 1 | -0/+3 |
| | | | | could appear on BufferedRandom streams. | ||||
* | Issue #12791: Break reference cycles early when a generator exits with an ↵ | Antoine Pitrou | 2011-08-20 | 1 | -0/+3 |
| | | | | exception. | ||||
* | Issue #12326: sys.platform is now always 'linux2' on Linux | Victor Stinner | 2011-08-20 | 1 | -0/+3 |
| | | | | Even if Python is compiled on Linux 3. | ||||
* | Issue #12650: Fix a race condition where a subprocess.Popen could leak | Charles-François Natali | 2011-08-18 | 1 | -0/+5 |
| | | | | resources (FD/zombie) when killed at the wrong time. | ||||
* | #12266: Fix str.capitalize() to correctly uppercase/lowercase titlecased and ↵ | Ezio Melotti | 2011-08-15 | 1 | -0/+12 |
| | | | | cased non-letter characters. | ||||
* | Fix #11513: wrong exception handling for the case that GzipFile itself ↵ | Georg Brandl | 2011-08-13 | 1 | -0/+3 |
| | | | | raises an IOError. | ||||
* | in narrow builds, make sure to test codepoints as identifier characters ↵ | Benjamin Peterson | 2011-08-13 | 1 | -0/+3 |
| | | | | | | (closes #12732) This fixes the use of Unicode identifiers outside the BMP in narrow builds. | ||||
* | Issue #12687: Fix a possible buffering bug when unpickling text mode ↵ | Antoine Pitrou | 2011-08-11 | 1 | -0/+3 |
| | | | | (protocol 0, mostly) pickles. | ||||
* | News item for Issue10087. | Senthil Kumaran | 2011-08-11 | 1 | -0/+2 |
| | |||||
* | Issue #12540: Prevent zombie IDLE processes on Windows due to changes | Ned Deily | 2011-08-03 | 1 | -0/+3 |
| | | | | in os.kill(). Original patch by Eli Bendersky. | ||||
* | Fix closes issue12683 - urljoin to work with relative join of svn scheme. | Senthil Kumaran | 2011-08-03 | 1 | -0/+3 |
| | |||||
* | Stop trying to write into the stdlib during lib2to3 tests (#12331). | Éric Araujo | 2011-07-31 | 1 | -0/+3 |
| | | | | | This prevents tests from failing when run from a Python installed in a read-only directory. | ||||
* | Fix regression with distutils MANIFEST handing (#11104, #8688). | Éric Araujo | 2011-07-31 | 2 | -0/+5 |
| | | | | | | | | | | | | | | | | | | | | | | 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. | ||||
* | Issue #12626: In regrtest, allow to filter tests using a glob filter | Antoine Pitrou | 2011-07-29 | 1 | -0/+5 |
| | | | | | | 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. | ||||
* | Issue #12464: tempfile.TemporaryDirectory.cleanup() should not follow symlinks: | Charles-François Natali | 2011-07-29 | 2 | -0/+4 |
| | | | | fix it. Patch by Petri Lehtinen. | ||||
* | Make “pydoc somebuiltin.somemethod” work (#8887) | Éric Araujo | 2011-07-29 | 1 | -0/+3 |
| | |||||
* | Branch merge | Éric Araujo | 2011-07-29 | 1 | -33/+34 |
|\ | |||||
| * | Change one line I missed in 7527f3f9829 | Éric Araujo | 2011-07-29 | 1 | -1/+1 |
| | | |||||
| * | Branch merge | Éric Araujo | 2011-07-28 | 1 | -0/+9 |
| |\ | |||||
| * \ | Branch merge. | Éric Araujo | 2011-07-26 | 1 | -32/+33 |
| |\ \ | | | | | | | | | | | | | I moved the NEWS entry for the reindent fix to the right release section. | ||||
| | * | | Fix sorting or wording of some NEWS entries. | Éric Araujo | 2011-07-26 | 1 | -27/+28 |
| | | | | | | | | | | | | | | | | | | | | 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. | ||||
* | | | | Issue 12514: Use try/finally to assure that timeit restores GC when done. | Raymond Hettinger | 2011-07-29 | 2 | -0/+4 |
| | | | | |||||
* | | | | Issue #12603: Fix pydoc.synopsis() on files with non-negative st_mtime. | Charles-François Natali | 2011-07-27 | 1 | -0/+2 |
| |_|/ |/| | | |||||
* | | | Issue #12607: In subprocess, fix issue where if stdin, stdout or stderr is | Ross Lagerwall | 2011-07-27 | 1 | -0/+3 |
| | | | | | | | | | | | | given as a low fd, it gets overwritten. | ||||
* | | | Issue #12590: IDLE editor window now always displays the first line | Ned Deily | 2011-07-27 | 1 | -0/+3 |
| | | | | | | | | | | | | when opening a long file. With Tk 8.5, the first line was hidden. | ||||
* | | | Fix closes Issue12576 - fix urlopen behavior on sites which do not send (or ↵ | Senthil Kumaran | 2011-07-27 | 1 | -0/+3 |
|/ / | | | | | | | obsfuscates) Connection: Close header. | ||||
* | | Fixes #10639: reindent.py should not convert newlines | Jason R. Coombs | 2011-07-26 | 1 | -0/+6 |
|/ | | | | reindent.py now will use the newline detected in the original file and will report an error if mixed newlines are encountered. | ||||
* | Issue #12102: Document that buffered files must be flushed before being used | Ross Lagerwall | 2011-07-25 | 1 | -0/+3 |
| | | | | with mmap. Patch by Steffen Daode Nurpmeso. | ||||
* | Issue #12560: Build libpython.so on OpenBSD. Patch by Stefan Sperling. | Charles-François Natali | 2011-07-24 | 2 | -0/+3 |
| | |||||
* | Issue #1813: Fix codec lookup under Turkish locales. | Antoine Pitrou | 2011-07-24 | 1 | -0/+2 |
| | |||||
* | Issue #12624: It is now possible to fail after the first failure when | Antoine Pitrou | 2011-07-23 | 1 | -0/+5 |
| | | | | | | 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. | ||||
* | Issue #12591: Improve support of "universal newlines" in the subprocess | Antoine Pitrou | 2011-07-23 | 1 | -0/+3 |
| | | | | | | | 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) | ||||
* | Issue #12591: Allow io.TextIOWrapper to work with raw IO objects (without | Antoine Pitrou | 2011-07-23 | 1 | -0/+4 |
| | | | | | a read1() method), and add an undocumented *write_through* parameter to mandate unbuffered writes. | ||||
* | Add Misc/NEWS entry for c741ba9e37ef. | Nadeem Vawda | 2011-07-23 | 1 | -0/+2 |
| | |||||
* | Issue #12592: Make Python build on OpenBSD 5 (and future major releases). | Charles-François Natali | 2011-07-22 | 1 | -0/+2 |
| |