summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* 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
|\
| * Issue #11603: Fix a crash when __str__ is rebound as __repr__.Antoine Pitrou2011-07-151-0/+3
| |\ | | | | | | | | | Patch by Andreas Stührk.
| | * Issue #11603: Fix a crash when __str__ is rebound as __repr__.Antoine Pitrou2011-07-151-0/+3
| | | | | | | | | | | | Patch by Andreas Stührk.
| | * Issue #12502: asyncore: fix polling loop with AF_UNIX sockets.Charles-François Natali2011-07-141-0/+2
| | |
* | | merge headsBenjamin Peterson2011-07-151-0/+3
|\ \ \ | |/ /
| * | Issue #11321: Fix a crash with multiple imports of the _pickle module whenAntoine Pitrou2011-07-151-0/+3
| | | | | | | | | | | | embedding Python. Patch by Andreas Stührk.
* | | catch nasty exception classes with __new__ that doesn't return a exception ↵Benjamin Peterson2011-07-151-0/+3
|/ / | | | | | | | | | | (closes #11627) Patch from Andreas Stührk.
* | Merge - Issue #12502: asyncore: fix polling loop with AF_UNIX sockets.Charles-François Natali2011-07-141-0/+2
| |
* | Issue #12549: Correct test_platform to not fail when OS X returns 'x86_64'Ned Deily2011-07-131-0/+3
| | | | | | | | | | as the processor type on some Mac systems. Also fix NameError in fallback _mac_ver_gestalt function. And remove out-of-date URL in docs.
* | Close #4376: ctypes now supports nested structures in a endian different thanVictor Stinner2011-07-132-0/+4
| | | | | | | | the parent structure. Patch by Vlad Riscutia.
* | Raise ValueError when attempting to set the _CHUNK_SIZE attribute of a ↵Antoine Pitrou2011-07-131-0/+3
| | | | | | | | TextIOWrapper to a huge value, not TypeError.
* | Issue #12149: Update the method cache after a type's dictionnary getsAntoine Pitrou2011-07-122-0/+7
| | | | | | | | | | | | | | | | | | cleared by the garbage collector. This fixes a segfault when an instance and its type get caught in a reference cycle, and the instance's deallocator calls one of the methods on the type (e.g. when subclassing IOBase). Diagnosis and patch by Davide Rizzo.
* | Merge 3.2.1 release clone into main repo.Georg Brandl2011-07-092-16/+13
|\ \
| * | Post-release steps for 3.2.1.Georg Brandl2011-07-091-0/+12
| | |
| * | Bump version to 3.2.1.v3.2.1Georg Brandl2011-07-092-5/+2
| | |
| * | Skip network tests when getaddrinfo() returns EAI_AGAIN, meaning a temporaryAntoine Pitrou2011-07-091-0/+3
| | | | | | | | | | | | | | | | | | failure in name resolution. Should fix a buildbot failure.
| * | Avoid failing in test_urllibnet.test_bad_address when some overzealousAntoine Pitrou2011-07-081-0/+7
| | | | | | | | | | | | | | | DNS service (e.g. OpenDNS) resolves a non-existent domain name. The test is now skipped instead.
* | | Skip network tests when getaddrinfo() returns EAI_AGAIN, meaning a temporaryAntoine Pitrou2011-07-091-0/+3
| | | | | | | | | | | | | | | | | | failure in name resolution. Should fix a buildbot failure.
* | | Avoid failing in test_robotparser when mueblesmoraleda.com is flaky andAntoine Pitrou2011-07-081-0/+4
| | | | | | | | | | | | | | | an overzealous DNS service (e.g. OpenDNS) redirects to a placeholder Web site.
* | | Avoid failing in test_urllibnet.test_bad_address when some overzealousAntoine Pitrou2011-07-081-0/+4
| | | | | | | | | | | | | | | DNS service (e.g. OpenDNS) resolves a non-existent domain name. The test is now skipped instead.
* | | Issue #12440: When testing whether some bits in SSLContext.options can beAntoine Pitrou2011-07-081-0/+4
| | | | | | | | | | | | | | | reset, check the version of the OpenSSL headers Python was compiled against, rather than the runtime version of the OpenSSL library.
* | | Issue #12451: pydoc: html_getfile() now uses tokenize.open() to support PythonVictor Stinner2011-07-051-0/+4
| | | | | | | | | | | | | | | scripts using a encoding different than UTF-8 (read the coding cookie of the script).
* | | Issue #12493: subprocess: communicate() handles EINTRVictor Stinner2011-07-051-0/+3
| | | | | | | | | | | | | | | subprocess.Popen.communicate() now also handles EINTR errors if the process has only one pipe.
* | | Issue #9611, #9015: FileIO.read() clamps the length to INT_MAX on Windows.Victor Stinner2011-07-051-1/+3
| | |
* | | Issue #12497: Install test/data to prevent failures of the various codecmapsNed Deily2011-07-051-1/+4
| | | | | | | | | | | | tests.
* | | Issue #12496: Install test/capath directory to prevent test_connect_capathNed Deily2011-07-051-0/+3
| | | | | | | | | | | | testcase failure in test_ssl.
* | | Merge 3.2.1 release clone changes into main 3.2 branch after 3.2.1rc2 release.Georg Brandl2011-07-042-33/+47
|\ \ \ | |/ /