| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Version bump to 3.2 final. | Georg Brandl | 2011-02-20 | 2 | -18/+15 |
| | | |||||
| * | #11249: in PyType_FromSpec, copy tp_doc slot since it usually will point to ↵ | Georg Brandl | 2011-02-19 | 1 | -0/+2 |
| | | | | | a static string literal which should not be deallocated together with the type. | ||||
| * | #11184: Fix large file support on AIX. | Georg Brandl | 2011-02-19 | 1 | -0/+2 |
| | | |||||
| * | #11222: fix non-framework shared library build on Mac, patch by Ned Deily. | Georg Brandl | 2011-02-19 | 1 | -0/+2 |
| | | |||||
| * | #10709: add back an updated AIX-NOTES (as README.AIX). | Georg Brandl | 2011-02-19 | 2 | -0/+142 |
| | | |||||
| * | #941346: Fix broken shared library build on AIX. Patch by Sebastien Sable, ↵ | Georg Brandl | 2011-02-15 | 1 | -0/+5 |
| | | | | | review by Antoine Pitrou. | ||||
| * | Post-release updates. | Georg Brandl | 2011-02-14 | 1 | -0/+12 |
| | | |||||
| * | Bump for 3.2rc3.v3.2rc3 | Georg Brandl | 2011-02-13 | 2 | -5/+5 |
| | | |||||
| * | #11116: roll back on error during add so mailbox isn't left corrupted. | R. David Murray | 2011-02-11 | 1 | -0/+3 |
| | | |||||
| * | Issue #11134: Add missing fields to typeslots.h. | Martin v. Löwis | 2011-02-11 | 1 | -0/+2 |
| | | | | | Reviewed by Georg Brandl. | ||||
| * | Issue #11135: Remove redundant doc field from PyType_Spec. | Martin v. Löwis | 2011-02-11 | 1 | -0/+2 |
| | | | | | Reviewed by Georg Brandl. | ||||
| * | Issue #11079: The /Applications/Python x.x folder created by the Mac | Ned Deily | 2011-02-07 | 1 | -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 Coghlan | 2011-02-07 | 1 | -0/+6 |
| | | | | | hunting (reviewed by Georg Brandl) | ||||
| * | #11132: pass optimize parameter to recursive call in ↵ | Georg Brandl | 2011-02-07 | 2 | -0/+4 |
| | | | | | compileall.compile_dir(). Reviewed by Eric A. | ||||
| * | Issue #11067: Add PyType_GetFlags, to support PyUnicode_Check | Martin v. Löwis | 2011-02-05 | 1 | -0/+3 |
| | | | | | in the limited ABI | ||||
| * | Issue #11121: Fix building with --enable-shared. | Martin v. Löwis | 2011-02-05 | 1 | -0/+5 |
| | | |||||
| * | There was a possibility that the initialization of _sqlite, when it failed, | Brett Cannon | 2011-02-04 | 1 | -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öwis | 2011-02-04 | 1 | -0/+2 |
| | | |||||
| * | Issue #8275: Fix passing of callback arguments with ctypes under Win64. | Antoine Pitrou | 2011-01-31 | 2 | -0/+4 |
| | | | | | Patch by Stan Mihai. Ok'ed by Georg. | ||||
| * | Post-release updates. | Georg Brandl | 2011-01-31 | 1 | -0/+12 |
| | | |||||
| * | Bump version.v3.2rc2 | Georg Brandl | 2011-01-30 | 2 | -2/+2 |
| | | |||||
| * | #10680: fix mutually exclusive arguments in argument groups. | Georg Brandl | 2011-01-30 | 1 | -0/+3 |
| | | |||||
| * | #10961: fix exception handling in new pydoc server code. | Georg Brandl | 2011-01-30 | 1 | -0/+3 |
| | | | | | Patch by Ron Adam, reviewed by Eric Araujo. | ||||
| * | #9124: mailbox now accepts binary input and uses binary internally | R. David Murray | 2011-01-30 | 1 | -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 Coghlan | 2011-01-30 | 1 | -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 Araujo | 2011-01-29 | 1 | -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 Save | Ned Deily | 2011-01-29 | 1 | -0/+3 |
| | | | | | commands. (with release manager approval for 3.2rc2) | ||||
| * | Issue #11054: Allow Mac OS X installer builds to again work on 10.5 with | Ned Deily | 2011-01-29 | 1 | -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 Deily | 2011-01-29 | 1 | -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 the | Ned Deily | 2011-01-29 | 1 | -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 Peterson | Alexander Belopolsky | 2011-01-29 | 1 | -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 Stinner | 2011-01-29 | 1 | -0/+2 |
| | | | | | Patch reviewed by Antoine Pitrou, okayed by Georg Brandl. | ||||
| * | Issue #11020: Command-line pyclbr was broken because of missing 2-to-3 | Raymond Hettinger | 2011-01-27 | 1 | -0/+3 |
| | | | | | | | conversion. (Patch reviewed by David Murray.) | ||||
| * | #11019: Make BytesGenerator handle Message with None body. | R. David Murray | 2011-01-26 | 1 | -0/+3 |
| | | | | | Bug discovery and initial patch by Victor Stinner. | ||||
| * | Issue #11014: Make 'filter' argument in tarfile.Tarfile.add() into a | Raymond Hettinger | 2011-01-26 | 1 | -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 Hettinger | 2011-01-25 | 1 | -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 files | Ned Deily | 2011-01-24 | 1 | -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 Bethard | 2011-01-24 | 1 | -0/+2 |
| | | | | | argparse.FileType. Approved by Georg in the tracker. | ||||
| * | Make the type consistent for hashlib algorithm constants. (Reviewed by ↵ | Raymond Hettinger | 2011-01-24 | 1 | -0/+3 |
| | | | | | Benjamin). | ||||
| * | Issue #10987: Fix the recursion limit handling in the _pickle module. | Antoine Pitrou | 2011-01-23 | 1 | -0/+2 |
| | | |||||
| * | Issue #10955: Fix typo in NEWS, cp497 => cp437 | Victor Stinner | 2011-01-23 | 1 | -1/+1 |
| | | |||||
| * | #10983: fix several bugs in the _tunnel implementation that seem to have ↵ | Georg Brandl | 2011-01-22 | 1 | -0/+2 |
| | | | | | missed while porting between branches. A unittest is needed! | ||||
| * | To match the behaviour of HTTP server, the HTTP client library now also encodes | Armin Ronacher | 2011-01-22 | 1 | -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 Ronacher | 2011-01-22 | 1 | -0/+4 |
| | | | | | | This makes the implementation of PEP 3333 compliant servers on top of BaseHTTPServer possible. | ||||
| * | Issue #10955: fix NEWS entry | Victor Stinner | 2011-01-22 | 1 | -1/+1 |
| | | |||||
| * | Issue #10955: zipimport uses ASCII at bootstrap | Victor Stinner | 2011-01-22 | 1 | -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 Sajip | 2011-01-21 | 1 | -0/+2 |
| | | |||||
| * | Issue #10955: Fix a potential crash when trying to mmap() a file past its | Antoine Pitrou | 2011-01-20 | 1 | -0/+3 |
| | | | | | | | length. Initial patch by Ross Lagerwall. This fixes a regression introduced by r88022. | ||||
| * | Move developers.txt to the devguide. | Brett Cannon | 2011-01-20 | 2 | -353/+0 |
| | | |||||
| * | Update Misc/README. | Brett Cannon | 2011-01-20 | 1 | -10/+1 |
| | | |||||
