summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* accept bytes for the AST 'string' typeBenjamin Peterson2011-09-011-0/+3
| | | | This is a temporary kludge and all is well in 3.3.
* Fix-up NEWS merge.Georg Brandl2011-09-031-4/+6
|
* Issue #9651: Fix a crash when ctypes.create_string_buffer(0) was passed toAmaury Forgeot d'Arc2011-08-301-0/+3
| | | | some functions like file.write().
* Issue #12839: Fix crash in zlib module due to version mismatch.Nadeem Vawda2011-08-282-0/+5
| | | | | | | | | 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.
* Issue #12326: sys.platform is now always 'linux2' on LinuxVictor Stinner2011-08-201-0/+4
| | | | Even if Python is compiled on Linux 3.
* Post-release steps.Georg Brandl2011-08-131-0/+12
|
* Merge with cpython.Georg Brandl2011-08-131-0/+3
|\
| * Fix #11513: wrong exception handling for the case that GzipFile itself ↵Georg Brandl2011-08-131-0/+3
| | | | | | | | raises an IOError.
* | Bump version to 3.2.2rc1.Georg Brandl2011-08-132-4/+4
|/
* in narrow builds, make sure to test codepoints as identifier characters ↵Benjamin Peterson2011-08-131-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 Pitrou2011-08-111-0/+3
| | | | (protocol 0, mostly) pickles.
* News item for Issue10087.Senthil Kumaran2011-08-111-0/+2
|
* Issue #12540: Prevent zombie IDLE processes on Windows due to changesNed Deily2011-08-031-0/+3
| | | | in os.kill(). Original patch by Eli Bendersky.
* Fix closes issue12683 - urljoin to work with relative join of svn scheme.Senthil Kumaran2011-08-031-0/+3
|
* Stop trying to write into the stdlib during lib2to3 tests (#12331).Éric Araujo2011-07-311-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 Araujo2011-07-312-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 filterAntoine Pitrou2011-07-291-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 Natali2011-07-292-0/+4
| | | | fix it. Patch by Petri Lehtinen.
* Make “pydoc somebuiltin.somemethod” work (#8887)Éric Araujo2011-07-291-0/+3
|
* Branch mergeÉric Araujo2011-07-291-33/+34
|\
| * Change one line I missed in 7527f3f9829Éric Araujo2011-07-291-1/+1
| |
| * Branch mergeÉric Araujo2011-07-281-0/+9
| |\
| * \ Branch merge.Éric Araujo2011-07-261-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 Araujo2011-07-261-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 Hettinger2011-07-292-0/+4
| | | |
* | | | Issue #12603: Fix pydoc.synopsis() on files with non-negative st_mtime.Charles-François Natali2011-07-271-0/+2
| |_|/ |/| |
* | | Issue #12607: In subprocess, fix issue where if stdin, stdout or stderr isRoss Lagerwall2011-07-271-0/+3
| | | | | | | | | | | | given as a low fd, it gets overwritten.
* | | Issue #12590: IDLE editor window now always displays the first lineNed Deily2011-07-271-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 Kumaran2011-07-271-0/+3
|/ / | | | | | | obsfuscates) Connection: Close header.
* | Fixes #10639: reindent.py should not convert newlinesJason R. Coombs2011-07-261-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 usedRoss Lagerwall2011-07-251-0/+3
| | | | with mmap. Patch by Steffen Daode Nurpmeso.
* Issue #12560: Build libpython.so on OpenBSD. Patch by Stefan Sperling.Charles-François Natali2011-07-242-0/+3
|
* Issue #1813: Fix codec lookup under Turkish locales.Antoine Pitrou2011-07-241-0/+2
|
* Issue #12624: It is now possible to fail after the first failure whenAntoine Pitrou2011-07-231-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 subprocessAntoine Pitrou2011-07-231-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 (withoutAntoine Pitrou2011-07-231-0/+4
| | | | | a read1() method), and add an undocumented *write_through* parameter to mandate unbuffered writes.
* Add Misc/NEWS entry for c741ba9e37ef.Nadeem Vawda2011-07-231-0/+2
|
* Issue #12592: Make Python build on OpenBSD 5 (and future major releases).Charles-François Natali2011-07-221-0/+2
|
* type check AST strings and identifiersBenjamin Peterson2011-07-221-0/+3
| | | | This is related to a21829180423 as well as #12609 and #12610.
* Issue #12372: POSIX semaphores are broken on AIX: don't use them.Charles-François Natali2011-07-211-0/+2
|
* Upstream mergeBarry Warsaw2011-07-191-2/+9
|\
| * - Issue #10309: Define _GNU_SOURCE so that mremap() gets the properBarry Warsaw2011-07-191-2/+9
| | | | | | | | | | signature. Without this, architectures where sizeof void* != sizeof int are broken. Patch given by Hallvard B Furuseth.
* | Issue #12587: Correct faulty test file and reference in test_tokenize.Ned Deily2011-07-192-0/+4
| | | | | | | | (Patch by Robert Xiao)
* | Issue #12571: Add a plat-linux3 directory mirroring the plat-linux2 directory,Antoine Pitrou2011-07-191-0/+4
|/ | | | so that "import DLFCN" and other similar imports work on Linux 3.0.
* #7484: no more <> around addresses in VRFY or EXPNR David Murray2011-07-191-0/+3
| | | | | | | | | The RFC doesn't say that they are allowed; apparently many mailers accept them, but not postfix. Contributions to this patch were made by Felipe Cruz and Catalin Iacob. The changeset also adds additional indirect tests for quoteaddr (null address and IDNA-encoded address).
* Closes #12579. Positional fields with str.format_map() now raise a ↵Eric V. Smith2011-07-182-0/+5
| | | | ValueError instead of SystemError.
* Close the call queue in concurrent.futures.ProcessPoolExecutor whenAntoine Pitrou2011-07-161-0/+3
| | | | shutdown() is called, without waiting for the garbage collector to kick in.
* Try harder to reap dangling threads in test.support.reap_threads().Antoine Pitrou2011-07-151-0/+2
|
* Issue #12573: Add resource checks for dangling Thread and Process objects.Antoine Pitrou2011-07-151-0/+2
|
* MergeAntoine Pitrou2011-07-151-0/+3
|\