summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge issue 1294232 patch from 3.2Nick Coghlan2011-10-235-23/+244
|\
| * Issue 1294232: Fix errors in metaclass calculation affecting some cases of ↵Nick Coghlan2011-10-235-22/+242
| | | | | | | | metaclass inheritance. Patch by Daniel Urban.
* | Add a docstring to SSLErrorAntoine Pitrou2011-10-221-3/+8
| |
* | Use PyExc_OSError directly instead of grabbing it from the socket module APIAntoine Pitrou2011-10-221-1/+1
| |
* | Add missing prefixesAntoine Pitrou2011-10-221-2/+2
| |
* | Elaborate on representations and canonical/legacy unicode objectsAntoine Pitrou2011-10-221-1/+15
| |
* | Move deprecated functions at the end of their respective sections.Antoine Pitrou2011-10-221-122/+122
| |
* | Issue 13243: Rename _Py_identifier to _Py_IDENTIFIER in asdl_c.pyMeador Inge2011-10-222-3/+4
| | | | | | | | | | Parser/asdl_c.py was missed in commit 7109f31300fb when _Py_identifier was replaced with _Py_IDENTIFIER. Thanks to Eric Snow for the patch.
* | Avoid relying on the default reST role in logging library docÉric Araujo2011-10-221-10/+10
| |
* | Closes #13235: Changed PendingDeprecationWarning to DeprecationWarning.Vinay Sajip2011-10-221-4/+4
| |
* | Fix unicode_subtype_new() on debug buildVictor Stinner2011-10-221-1/+1
| | | | | | | | Patch written by Stefan Behnel.
* | Fix text duplication. Spotted by Nick Coghlan, thanks!Éric Araujo2011-10-211-2/+2
| |
* | Remove unused variable.Ezio Melotti2011-10-211-1/+0
| |
* | #12753: fix compilation on Windows.Ezio Melotti2011-10-211-1/+2
| |
* | #12753: Add support for Unicode name aliases and named sequences.Ezio Melotti2011-10-2110-17194/+18125
| |
* | Banch mergeÉric Araujo2011-10-217-18/+161
|\ \
| * | Add tests for packaging.tests.support (#12659).Éric Araujo2011-10-211-0/+78
| | | | | | | | | | | | Thanks to Francisco Martín Brugué for the patch.
| * | Document that packaging doesn’t create __init__.py files (#3902).Éric Araujo2011-10-212-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The bug reported expected distutils to create an __init__.py file for a project using only C extension modules. IMO, how Python imports packages and submodules is well documented, and it’s never suggested that distutils might create an __init__.py file, so I’m adding this clarification to the packaging docs but won’t backport unless other people tell me they shared the same wrong expectation. Thanks to Mike Hoy for his help with the patch.
| * | Fix missing imports in setup scripts generated by packaging (#13205).Éric Araujo2011-10-213-17/+74
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I’ve made more edits than the bug report suggested to make sure the generated setup script is compatible with many Python versions; a comment in the source explains that in detail. The cfg_to_args function uses old 2.x idioms like codecs.open and RawConfigParser.readfp because I want the setup.py generated by packaging and distutils2 to be the same. Most users won’t see the deprecation warning and I ignore it in the test suite. Thanks to David Barnett for the report and original patch.
* | | Closes #13235: Added deprecation for warn() methods and function in logging.Vinay Sajip2011-10-213-5/+23
| | |
* | | Issue #12170: The count(), find(), rfind(), index() and rindex() methodsAntoine Pitrou2011-10-207-51/+261
| | | | | | | | | | | | | | | of bytes and bytearray objects now accept an integer between 0 and 255 as their first argument. Patch by Petri Lehtinen.
* | | Issue #9168: now smtpd is able to bind privileged port.Florent Xicluna2011-10-202-10/+12
|\ \ \ | | |/ | |/|
| * | Issue #9168: now smtpd is able to bind privileged port.Florent Xicluna2011-10-202-10/+12
| | |
* | | #13233: null merge with 3.2.Ezio Melotti2011-10-200-0/+0
|\ \ \ | |/ /
| * | #13233: fix typo.Ezio Melotti2011-10-201-1/+1
| | |
* | | Merge heads.Ezio Melotti2011-10-201-24/+30
|\ \ \
| * \ \ #13219: merge with 3.2.Ezio Melotti2011-10-201-24/+30
| |\ \ \ | | |/ /
| | * | #13219: clarify section about character sets in the re documentation.Ezio Melotti2011-10-201-24/+30
| | | |
* | | | mergeRaymond Hettinger2011-10-201-0/+6
|\ \ \ \ | |/ / /
| * | | merge headsSenthil Kumaran2011-10-201-5/+5
| |\ \ \
| * \ \ \ News entry for Issue12529 and Issue12604Senthil Kumaran2011-10-201-0/+6
| |\ \ \ \ | | | |/ / | | |/| |
| | * | | News entry for Issue12529 and Issue12604Senthil Kumaran2011-10-201-0/+6
| | | | |
* | | | | Bytes are already distinct from text, so typed=True isn't necessary.Raymond Hettinger2011-10-201-1/+1
| |_|/ / |/| | |
* | | | Simplify calls in fnmatch.Raymond Hettinger2011-10-201-5/+5
|/ / /
* | | Issue 13227: Option to make the lru_cache() type specific (suggested by ↵Raymond Hettinger2011-10-205-12/+49
| | | | | | | | | | | | Andrew Koenig).
* | | Mention that os.O_CLOEXEC was added to Python 3.3Victor Stinner2011-10-191-0/+2
| | |
* | | Issue #13150: Add a comment in _sysconfigdata to explain the origin of this fileVictor Stinner2011-10-191-1/+4
| | |
* | | Silence the FileExistsError which can be raised because of the O_EXCL flagAntoine Pitrou2011-10-191-7/+7
| | | | | | | | | | | | (as in import.c)
* | | mergeRaymond Hettinger2011-10-191-1/+1
|\ \ \ | |/ /
| * | Issue 12668: Fix wording in Whatsnew3.2Raymond Hettinger2011-10-191-1/+1
| | |
* | | MergeRaymond Hettinger2011-10-191-12/+11
|\ \ \ | |/ /
| * | Issue 11931: Minor punctuation/grammar/wording fixups to the regex docsRaymond Hettinger2011-10-191-12/+11
| | |
* | | merge 3.2Benjamin Peterson2011-10-191-5/+4
|\ \ \ | |/ /
| * | adjust braces a bitBenjamin Peterson2011-10-191-5/+4
| | |
* | | Issue #13121: Support in-place math operators for collections.Counter().Raymond Hettinger2011-10-194-1/+86
| |/ |/|
* | Branch mergeÉric Araujo2011-10-1928-164/+253
|\ \
| * | Make one function in packaging.metadata simplerÉric Araujo2011-10-191-4/+3
| | |
| * | Clean up some idioms in packaging tests.Éric Araujo2011-10-1913-37/+40
| | | | | | | | | | | | | | | | | | | | | | | | - Use os.makedirs (I had forgotten about it!) - Let TempdirManager.write_file call os.path.join for us - Remove custom command added by test_dist - Use a skip instead of hiding a method with an underscore - Address pyflakes warnings
| * | Add reST targets to sections of the setup.cfg spec, improve wordingÉric Araujo2011-10-191-7/+32
| | |
| * | Change signature of packaging.tests.support.LoggingCatcher.get_logs.Éric Araujo2011-10-1910-72/+65
| | | | | | | | | | | | | | | | | | I need this for some tests, and it makes code clearer. This commit also changes some assertEqual calls to use (actual, expected) order and fix some pyflakes warnings.