summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Version bump to 3.2 final.Georg Brandl2011-02-202-18/+15
|
* #11249: in PyType_FromSpec, copy tp_doc slot since it usually will point to ↵Georg Brandl2011-02-191-0/+2
| | | | a static string literal which should not be deallocated together with the type.
* #11184: Fix large file support on AIX.Georg Brandl2011-02-191-0/+2
|
* #11222: fix non-framework shared library build on Mac, patch by Ned Deily.Georg Brandl2011-02-191-0/+2
|
* #10709: add back an updated AIX-NOTES (as README.AIX).Georg Brandl2011-02-192-0/+142
|
* #941346: Fix broken shared library build on AIX. Patch by Sebastien Sable, ↵Georg Brandl2011-02-151-0/+5
| | | | review by Antoine Pitrou.
* Post-release updates.Georg Brandl2011-02-141-0/+12
|
* Bump for 3.2rc3.v3.2rc3Georg Brandl2011-02-132-5/+5
|
* #11116: roll back on error during add so mailbox isn't left corrupted.R. David Murray2011-02-111-0/+3
|
* Issue #11134: Add missing fields to typeslots.h.Martin v. Löwis2011-02-111-0/+2
| | | | Reviewed by Georg Brandl.
* Issue #11135: Remove redundant doc field from PyType_Spec.Martin v. Löwis2011-02-111-0/+2
| | | | Reviewed by Georg Brandl.
* Issue #11079: The /Applications/Python x.x folder created by the MacNed Deily2011-02-071-0/+5
| | | | | OS X installers no longer includes an Extras directory. The Tools directory is now installed in the framework under share/doc.
* Issue 10971: Make test_zipimport_support once again compatible with refleak ↵Nick Coghlan2011-02-071-0/+6
| | | | hunting (reviewed by Georg Brandl)
* #11132: pass optimize parameter to recursive call in ↵Georg Brandl2011-02-072-0/+4
| | | | compileall.compile_dir(). Reviewed by Eric A.
* Issue #11067: Add PyType_GetFlags, to support PyUnicode_CheckMartin v. Löwis2011-02-051-0/+3
| | | | in the limited ABI
* Issue #11121: Fix building with --enable-shared.Martin v. Löwis2011-02-051-0/+5
|
* There was a possibility that the initialization of _sqlite, when it failed,Brett Cannon2011-02-041-0/+2
| | | | | | would lead to a decref of a NULL. Fixes issue #11110.
* Issue #11118: Fix bogus export of None in python3.dll.Martin v. Löwis2011-02-041-0/+2
|
* Issue #8275: Fix passing of callback arguments with ctypes under Win64.Antoine Pitrou2011-01-312-0/+4
| | | | Patch by Stan Mihai. Ok'ed by Georg.
* Post-release updates.Georg Brandl2011-01-311-0/+12
|
* Bump version.v3.2rc2Georg Brandl2011-01-302-2/+2
|
* #10680: fix mutually exclusive arguments in argument groups.Georg Brandl2011-01-301-0/+3
|
* #10961: fix exception handling in new pydoc server code.Georg Brandl2011-01-301-0/+3
| | | | Patch by Ron Adam, reviewed by Eric Araujo.
* #9124: mailbox now accepts binary input and uses binary internallyR. David Murray2011-01-301-0/+6
| | | | | | | | | | | | | | | | Although this patch contains API changes and is rather weighty for an RC phase, the mailbox module was essentially unusable without the patch since it would produce UnicodeErrors when handling non-ascii input at arbitrary and somewhat mysterious places, and any non-trivial amount of email processing will encounter messages with non-ascii bytes. The release manager approved the patch application. The changes allow binary input, and reject non-ASCII string input early with a useful message instead of failing mysteriously later. Binary is used internally for reading and writing the mailbox files. StringIO and Text file input are deprecated. Initial patch by Victor Stinner, validated and expanded by R. David Murray.
* Issue #10845: Improve compatibility between multiprocessing on Windows and ↵Nick Coghlan2011-01-301-0/+4
| | | | package, zipfile and directory execution (Reviewed by Antoine Pitrou and approved by Georg Brandl)
* Protect logging call against None argument (fixes #11045).Éric Araujo2011-01-291-0/+2
| | | | | | Initial patch by Kelsey Hightower. Approved by Raymond. A test was non-trivial to write without calling the private function directly, so we moved that for later.
* Issue 11052: Correct IDLE menu accelerators on Mac OS X for SaveNed Deily2011-01-291-0/+3
| | | | commands. (with release manager approval for 3.2rc2)
* Issue #11054: Allow Mac OS X installer builds to again work on 10.5 withNed Deily2011-01-291-0/+7
| | | | | | the system-provided Python. Also, properly guard a new Python 3 only installer build step so that build-installer.py can stay compatible with the 2.7 version. (with release manager approval for 3.2rc2)
* Issue #11053: Fix IDLE "Syntax Error" windows to behave as in 2.x,Ned Deily2011-01-291-0/+4
| | | | | preventing a confusing hung appearance on OS X with the windows obscured. (with release manager approval for 3.2rc2)
* Issue #10940: Workaround an IDLE hang on Mac OS X 10.6 when using theNed Deily2011-01-291-0/+4
| | | | | menu accelerators for Open Module, Go to Line, and New Indent Width. The accelerators still work but no longer appear in the menu items.
* Issue #10939: Fixed imaplib.Internaldate2tuple(). Thanks Joe PetersonAlexander Belopolsky2011-01-291-0/+1
| | | | for the report and the patch. Reviewed by Georg Brandl.
* Issue #10989: Fix a crash on SSLContext.load_verify_locations(None, True).Victor Stinner2011-01-291-0/+2
| | | | Patch reviewed by Antoine Pitrou, okayed by Georg Brandl.
* Issue #11020: Command-line pyclbr was broken because of missing 2-to-3Raymond Hettinger2011-01-271-0/+3
| | | | | | conversion. (Patch reviewed by David Murray.)
* #11019: Make BytesGenerator handle Message with None body.R. David Murray2011-01-261-0/+3
| | | | Bug discovery and initial patch by Victor Stinner.
* Issue #11014: Make 'filter' argument in tarfile.Tarfile.add() into aRaymond Hettinger2011-01-261-0/+4
| | | | | | | keyword-only argument. The preceding positional argument was deprecated, so it made no sense to add filter as a positional argument. (Patch reviewed by Brian Curtin and Anthony Long.)
* Issue #11004: Repair edge case in deque.count().Raymond Hettinger2011-01-251-0/+2
| | | | | | | | | (Reviewed by Georg Brandl.) Also made similar changes to deque.reverse() though this wasn't strictly necessary (the edge case cannot occur with two pointers moving to meet in the middle). Making the change in reverse() was more a matter of future-proofing.
* #10974: IDLE no longer crashes if its recent files list includes filesNed Deily2011-01-241-0/+3
| | | | | | with non-ASCII characters in their path names. (with approval of release manager for 3.2rc2)
* Issue #9509: make argarse properly handle IOErrors raised by ↵Steven Bethard2011-01-241-0/+2
| | | | argparse.FileType. Approved by Georg in the tracker.
* Make the type consistent for hashlib algorithm constants. (Reviewed by ↵Raymond Hettinger2011-01-241-0/+3
| | | | Benjamin).
* Issue #10987: Fix the recursion limit handling in the _pickle module.Antoine Pitrou2011-01-231-0/+2
|
* Issue #10955: Fix typo in NEWS, cp497 => cp437Victor Stinner2011-01-231-1/+1
|
* #10983: fix several bugs in the _tunnel implementation that seem to have ↵Georg Brandl2011-01-221-0/+2
| | | | missed while porting between branches. A unittest is needed!
* To match the behaviour of HTTP server, the HTTP client library now also encodesArmin Ronacher2011-01-221-0/+5
| | | | | | headers with iso-8859-1 (latin1) encoding. It was already doing that for incoming headers which makes this behaviour now consistent in both incoming and outgoing direction.
* Issue #10980: encode headers with latin1 instead of ASCII in the HTTP server.Armin Ronacher2011-01-221-0/+4
| | | | | This makes the implementation of PEP 3333 compliant servers on top of BaseHTTPServer possible.
* Issue #10955: fix NEWS entryVictor Stinner2011-01-221-1/+1
|
* Issue #10955: zipimport uses ASCII at bootstrapVictor Stinner2011-01-221-0/+5
| | | | | | | zipimport uses ASCII encoding instead of cp497 to decode filenames, at bootstrap, if the codec registry is not ready yet. It is still possible to have non-ASCII filenames using the Unicode flag (UTF-8 encoding) for file entries in the ZIP file.
* Issue #10949: Improved robustness of rotating file handlers.Vinay Sajip2011-01-211-0/+2
|
* Issue #10955: Fix a potential crash when trying to mmap() a file past itsAntoine Pitrou2011-01-201-0/+3
| | | | | | length. Initial patch by Ross Lagerwall. This fixes a regression introduced by r88022.
* Move developers.txt to the devguide.Brett Cannon2011-01-202-353/+0
|
* Update Misc/README.Brett Cannon2011-01-201-10/+1
|