Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 |
| | |||||
* | type check AST strings and identifiers | Benjamin Peterson | 2011-07-22 | 1 | -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 Natali | 2011-07-21 | 1 | -0/+2 |
| | |||||
* | Upstream merge | Barry Warsaw | 2011-07-19 | 1 | -2/+9 |
|\ | |||||
| * | - Issue #10309: Define _GNU_SOURCE so that mremap() gets the proper | Barry Warsaw | 2011-07-19 | 1 | -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 Deily | 2011-07-19 | 2 | -0/+4 |
| | | | | | | | | (Patch by Robert Xiao) | ||||
* | | Issue #12571: Add a plat-linux3 directory mirroring the plat-linux2 directory, | Antoine Pitrou | 2011-07-19 | 1 | -0/+4 |
|/ | | | | so that "import DLFCN" and other similar imports work on Linux 3.0. | ||||
* | #7484: no more <> around addresses in VRFY or EXPN | R David Murray | 2011-07-19 | 1 | -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. Smith | 2011-07-18 | 2 | -0/+5 |
| | | | | ValueError instead of SystemError. | ||||
* | Close the call queue in concurrent.futures.ProcessPoolExecutor when | Antoine Pitrou | 2011-07-16 | 1 | -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 Pitrou | 2011-07-15 | 1 | -0/+2 |
| | |||||
* | Issue #12573: Add resource checks for dangling Thread and Process objects. | Antoine Pitrou | 2011-07-15 | 1 | -0/+2 |
| | |||||
* | Merge | Antoine Pitrou | 2011-07-15 | 1 | -0/+3 |
|\ | |||||
| * | Issue #11603: Fix a crash when __str__ is rebound as __repr__. | Antoine Pitrou | 2011-07-15 | 1 | -0/+3 |
| |\ | | | | | | | | | | Patch by Andreas Stührk. | ||||
| | * | Issue #11603: Fix a crash when __str__ is rebound as __repr__. | Antoine Pitrou | 2011-07-15 | 1 | -0/+3 |
| | | | | | | | | | | | | Patch by Andreas Stührk. | ||||
| | * | Issue #12502: asyncore: fix polling loop with AF_UNIX sockets. | Charles-François Natali | 2011-07-14 | 1 | -0/+2 |
| | | | |||||
* | | | merge heads | Benjamin Peterson | 2011-07-15 | 1 | -0/+3 |
|\ \ \ | |/ / | |||||
| * | | Issue #11321: Fix a crash with multiple imports of the _pickle module when | Antoine Pitrou | 2011-07-15 | 1 | -0/+3 |
| | | | | | | | | | | | | embedding Python. Patch by Andreas Stührk. | ||||
* | | | catch nasty exception classes with __new__ that doesn't return a exception ↵ | Benjamin Peterson | 2011-07-15 | 1 | -0/+3 |
|/ / | | | | | | | | | | | (closes #11627) Patch from Andreas Stührk. | ||||
* | | Merge - Issue #12502: asyncore: fix polling loop with AF_UNIX sockets. | Charles-François Natali | 2011-07-14 | 1 | -0/+2 |
| | | |||||
* | | Issue #12549: Correct test_platform to not fail when OS X returns 'x86_64' | Ned Deily | 2011-07-13 | 1 | -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 than | Victor Stinner | 2011-07-13 | 2 | -0/+4 |
| | | | | | | | | the parent structure. Patch by Vlad Riscutia. | ||||
* | | Raise ValueError when attempting to set the _CHUNK_SIZE attribute of a ↵ | Antoine Pitrou | 2011-07-13 | 1 | -0/+3 |
| | | | | | | | | TextIOWrapper to a huge value, not TypeError. | ||||
* | | Issue #12149: Update the method cache after a type's dictionnary gets | Antoine Pitrou | 2011-07-12 | 2 | -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 Brandl | 2011-07-09 | 2 | -16/+13 |
|\ \ | |||||
| * | | Post-release steps for 3.2.1. | Georg Brandl | 2011-07-09 | 1 | -0/+12 |
| | | | |||||
| * | | Bump version to 3.2.1.v3.2.1 | Georg Brandl | 2011-07-09 | 2 | -5/+2 |
| | | | |||||
| * | | Skip network tests when getaddrinfo() returns EAI_AGAIN, meaning a temporary | Antoine Pitrou | 2011-07-09 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | | | failure in name resolution. Should fix a buildbot failure. | ||||
| * | | Avoid failing in test_urllibnet.test_bad_address when some overzealous | Antoine Pitrou | 2011-07-08 | 1 | -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 temporary | Antoine Pitrou | 2011-07-09 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | | | failure in name resolution. Should fix a buildbot failure. | ||||
* | | | Avoid failing in test_robotparser when mueblesmoraleda.com is flaky and | Antoine Pitrou | 2011-07-08 | 1 | -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 overzealous | Antoine Pitrou | 2011-07-08 | 1 | -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 be | Antoine Pitrou | 2011-07-08 | 1 | -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 Python | Victor Stinner | 2011-07-05 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | scripts using a encoding different than UTF-8 (read the coding cookie of the script). | ||||
* | | | Issue #12493: subprocess: communicate() handles EINTR | Victor Stinner | 2011-07-05 | 1 | -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 Stinner | 2011-07-05 | 1 | -1/+3 |
| | | | |||||
* | | | Issue #12497: Install test/data to prevent failures of the various codecmaps | Ned Deily | 2011-07-05 | 1 | -1/+4 |
| | | | | | | | | | | | | tests. | ||||
* | | | Issue #12496: Install test/capath directory to prevent test_connect_capath | Ned Deily | 2011-07-05 | 1 | -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 Brandl | 2011-07-04 | 2 | -33/+47 |
|\ \ \ | |/ / |