summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Remove duplication.Ezio Melotti2011-10-1929-33/+33
|
* Fixes #10860: Handle empty port after port delimiter in httplibŁukasz Langa2011-10-183-2/+31
| | | | | | Thanks, Shawn Ligocki! 3.x version will come as a separate patch.
* #12277: add missing comma.Ezio Melotti2011-10-181-1/+1
|
* Issue #13194: zlib.compressobj().copy() and zlib.decompressobj().copy() are ↵Nadeem Vawda2011-10-172-0/+6
| | | | now available on Windows.
* normalize whitespace in Lib/distutils/msvc9compiler.pyMark Hammond2011-10-171-2/+2
|
* Issue #7833: Ext. modules built using distutils on Windows no longer get a ↵Mark Hammond2011-10-173-22/+106
| | | | manifest
* PyEval_CallObject requires a tuple of args (closes #13186)Benjamin Peterson2011-10-154-1/+31
|
* Increase test coverage for distutils.filelist (#11751).Éric Araujo2011-10-142-10/+198
| | | | Patch by Justin Love.
* Update dead references from py.org/dev/faq to the devguide (#13176)Éric Araujo2011-10-142-10/+4
|
* Issue #13159: Replace FileIO's quadratic-time buffer growth algorithm with a ↵Nadeem Vawda2011-10-134-45/+15
| | | | | | linear-time one. Also fix the builtin file class and the bz2 module, which used the same algorithm.
* Issue #13156: Add an entry in Misc/NEWS.Charles-François Natali2011-10-121-0/+3
|
* Merge.Charles-François Natali2011-10-123-19/+0
|\
| * Issue #13156: revert changeset f6feed6ec3f9, which was only relevant for nativeCharles-François Natali2011-10-124-23/+0
| | | | | | | | | | | | TLS implementations, and fails with the ad-hoc TLS implementation when a thread doesn't have an auto thread state (e.g. a thread created outside of Python calling into a subinterpreter).
* | Fix/improve markup in whatsnew/2.7.Ezio Melotti2011-10-091-7/+10
| |
* | #13138: add missing versionadded. Patch by Andreas Stührk.Ezio Melotti2011-10-091-0/+2
| |
* | Clean-up and improve the priority queue example in the heapq docs.Raymond Hettinger2011-10-091-25/+25
| |
* | Issue #13053: Added section on migrating from CObject to CapsuleLarry Hastings2011-10-092-0/+186
| | | | | | | | to howto/cporting.rst.
* | Fix distutils’ check and register Unicode handling (#13114).Éric Araujo2011-10-096-13/+56
| | | | | | | | | | | | | | | | | | The check command was fixed by Kirill Kuzminykh. The register command was using StringIO.getvalue, which uses “''.join” and thus coerces to str using the default encoding (ASCII), so I changed the code to use one extra intermediary list and correctly encode to UTF-8.
* | Branch mergeÉric Araujo2011-10-093-10/+13
|\ \
| * | Fix test_sysconfig when prefix != exec-prefix (#9100).Éric Araujo2011-10-081-5/+8
| | | | | | | | | | | | Reported by Zsolt Cserna.
| * | Make C code in one distutils test comply with ISO C (#10359).Éric Araujo2011-10-081-2/+2
| | | | | | | | | | | | Patch by Hallvard B Furuseth.
| * | Fix a typo and a broken link (part of #10536).Éric Araujo2011-10-081-3/+3
| | | | | | | | | | | | Found by Franz Glasner in #2504.
* | | Fix a missing encoding argument when opening a text file in some of ↵Antoine Pitrou2011-10-081-1/+1
| | | | | | | | | | | | | | | | | | iobench's subtests. (found by Georg)
* | | Issue #7367: Ensure test directory always gets removed.Ned Deily2011-10-071-2/+2
|/ /
* | Issue #12823: remove broken link and replace it with another resource.Antoine Pitrou2011-10-071-2/+2
| |
* | Issue #7425 and Issue #7367: add NEWS items.Ned Deily2011-10-061-0/+6
| |
* | Issue #7367: Fix pkgutil.walk_paths to skip directories whoseNed Deily2011-10-061-3/+11
| | | | | | | | contents cannot be read.
* | Issue #7425: Prevent pydoc -k failures due to module import errors.Ned Deily2011-10-061-5/+6
| | | | | | | | (Backport to 2.7 of existing 3.x fix)
* | Issue #7367: Add test case to test_pkgutil for walking path withNed Deily2011-10-061-0/+11
| | | | | | | | an unreadable directory.
* | Issue #7425: Refactor test_pydoc test case for '-k' behavior and addNed Deily2011-10-061-49/+63
| | | | | | | | new test cases for importing bad packages and unreadable packages dirs.
* | Issue #13070: Fix a crash when a TextIOWrapper caught in a reference cycleCharles-François Natali2011-10-063-0/+24
| | | | | | | | | | would be finalized after the reference to its underlying BufferedRWPair's writer got cleared by the GC.
* | Branch mergeÉric Araujo2011-10-062-19/+19
|\ \
| * | Fix typo and case in a recently added testÉric Araujo2011-10-051-1/+1
| | |
| * | Fix markup used in the documentation of sys.prefix and sys.exec_prefix.Éric Araujo2011-10-051-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | - Using the file role with {placeholders} is IMO clearer than fake Python code. - The fact that sys.version[:3] gives '2.7' is a CPython detail and should not be advertised (see #9442), even if some stdlib modules currently rely on that detail.
| * | Move doc of sys.dont_write_bytecode to make all attributes sorted againÉric Araujo2011-10-051-11/+11
| | |
* | | Enable the only tests for sys.gettraceAmaury Forgeot d'Arc2011-10-051-2/+2
| | |
* | | Issue13073 - Address review comments and add versionchanged information in ↵Senthil Kumaran2011-10-052-8/+11
|/ / | | | | | | the docs.
* | Try to fix linking failures under WindowsAntoine Pitrou2011-10-041-3/+3
| |
* | Remove all other uses of the C tolower()/toupper() which could break with a ↵Antoine Pitrou2011-10-043-6/+6
| | | | | | | | | | | | Turkish locale. (except in the strop module, which is deprecated anyway)
* | Issue #13099: Fix sqlite3.Cursor.lastrowid under a Turkish locale.Antoine Pitrou2011-10-043-2/+6
| | | | | | | | Reported and diagnosed by Thomas Kluyver.
* | Avoid testing stuff that's been fixed in 2.7 on older PythonsAntoine Pitrou2011-10-041-0/+4
| |
* | Issue #7689: Allow pickling of dynamically created classes when theirAntoine Pitrou2011-10-045-14/+41
| | | | | | | | | | metaclass is registered with copyreg. Patch by Nicolas M. Thiéry and Craig Citro.
* | Issue #12881: ctypes: Fix segfault with large structure field names.Meador Inge2011-10-043-1/+21
| |
* | update 2.7 - Document message_body arg in HTTPConnection.endheadersSenthil Kumaran2011-10-021-1/+5
| |
* | #13076: fix links to datetime.time.Ezio Melotti2011-10-021-9/+9
| |
* | #4147: minidom's toprettyxml no longer adds whitespace to text nodes.R David Murray2011-10-012-2/+11
| | | | | | | | Patch by Dan Kenigsberg.
* | Issue #13034: When decoding some SSL certificates, the subjectAltName ↵Antoine Pitrou2011-10-013-3/+54
| | | | | | | | extension could be unreported.
* | Issue #13058: ossaudiodev: fix a file descriptor leak on error. Patch by ThomasCharles-François Natali2011-09-293-0/+5
| | | | | | | | Jarosch.
* | Doc fix. Mathematically correct sentence.Senthil Kumaran2011-09-281-2/+2
| |
* | Issue #13013: ctypes: Fix a reference leak in PyCArrayType_from_ctype.Meador Inge2011-09-283-0/+5
| | | | | | | | Thanks to Suman Saha for finding the bug and providing a patch.