Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge | Antoine Pitrou | 2011-10-23 | 1 | -1/+1 |
|\ | |||||
| * | Use ``...`` for string literals. | Ezio Melotti | 2011-10-24 | 1 | -1/+1 |
| | | |||||
* | | Use InterruptedError instead of checking for EINTR | Antoine Pitrou | 2011-10-23 | 6 | -38/+17 |
|/ | |||||
* | Fix documentation formatting. | Florent Xicluna | 2011-10-23 | 1 | -1/+1 |
| | |||||
* | Merge heads | Florent Xicluna | 2011-10-23 | 2 | -30/+36 |
|\ | |||||
| * | Merge 3.2 | Florent Xicluna | 2011-10-23 | 2 | -30/+36 |
| |\ | |||||
| | * | Issue 13141: Demonstrate recommended style for socketserver examples. | Florent Xicluna | 2011-10-23 | 2 | -30/+40 |
| | | | |||||
* | | | Remove obsolete FAQ. | Ezio Melotti | 2011-10-23 | 1 | -31/+0 |
|/ / | |||||
* | | Documentation typo. | Florent Xicluna | 2011-10-23 | 2 | -2/+2 |
| | | |||||
* | | Cleanup code: remove int/long idioms and simplify a while statement. | Florent Xicluna | 2011-10-23 | 5 | -35/+10 |
| | | |||||
* | | Issue #12965: Fix some inaccurate comments in Objects/longobject.c. Thanks ↵ | Mark Dickinson | 2011-10-23 | 1 | -15/+23 |
| | | | | | | | | Stefan Krah. | ||||
* | | Issue #10925: Add equivalent pure Python code for the builtin int-to-float ↵ | Mark Dickinson | 2011-10-23 | 1 | -0/+80 |
| | | | | | | | | conversion to test_long. | ||||
* | | Issue #13201: equality for range objects is now based on equality of the ↵ | Mark Dickinson | 2011-10-23 | 7 | -4/+209 |
| | | | | | | | | underlying sequences. Thanks Sven Marnach for the patch. | ||||
* | | Merge 3.2 | Petri Lehtinen | 2011-10-23 | 1 | -0/+2 |
|\ \ | |/ | |||||
| * | Add the green "New reference" note to the doc of PyException_GetTraceback() | Petri Lehtinen | 2011-10-23 | 1 | -0/+2 |
| | | |||||
* | | Rewrite find_module_path using unicode API. | Martin v. Löwis | 2011-10-23 | 1 | -35/+48 |
| | | |||||
* | | Fix off-by-one error. | Martin v. Löwis | 2011-10-23 | 1 | -2/+2 |
| | | |||||
* | | Drop unused macros. Use CACHEDIR consistently. | Martin v. Löwis | 2011-10-23 | 1 | -8/+4 |
| | | |||||
* | | Rewrite make_source_pathname using Unicode API. | Martin v. Löwis | 2011-10-23 | 1 | -38/+41 |
| | | |||||
* | | Add ready checks for make_compiled_pathname. | Martin v. Löwis | 2011-10-23 | 1 | -1/+9 |
| | | |||||
* | | Reformulate make_compiled_pathname in terms of unicode objects. | Martin v. Löwis | 2011-10-23 | 1 | -116/+61 |
| | | |||||
* | | Merge issue 1294232 patch from 3.2 | Nick Coghlan | 2011-10-23 | 5 | -23/+244 |
|\ \ | |/ | |||||
| * | Issue 1294232: Fix errors in metaclass calculation affecting some cases of ↵ | Nick Coghlan | 2011-10-23 | 5 | -22/+242 |
| | | | | | | | | metaclass inheritance. Patch by Daniel Urban. | ||||
* | | Add a docstring to SSLError | Antoine Pitrou | 2011-10-22 | 1 | -3/+8 |
| | | |||||
* | | Use PyExc_OSError directly instead of grabbing it from the socket module API | Antoine Pitrou | 2011-10-22 | 1 | -1/+1 |
| | | |||||
* | | Add missing prefixes | Antoine Pitrou | 2011-10-22 | 1 | -2/+2 |
| | | |||||
* | | Elaborate on representations and canonical/legacy unicode objects | Antoine Pitrou | 2011-10-22 | 1 | -1/+15 |
| | | |||||
* | | Move deprecated functions at the end of their respective sections. | Antoine Pitrou | 2011-10-22 | 1 | -122/+122 |
| | | |||||
* | | Issue 13243: Rename _Py_identifier to _Py_IDENTIFIER in asdl_c.py | Meador Inge | 2011-10-22 | 2 | -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 Araujo | 2011-10-22 | 1 | -10/+10 |
| | | |||||
* | | Closes #13235: Changed PendingDeprecationWarning to DeprecationWarning. | Vinay Sajip | 2011-10-22 | 1 | -4/+4 |
| | | |||||
* | | Fix unicode_subtype_new() on debug build | Victor Stinner | 2011-10-22 | 1 | -1/+1 |
| | | | | | | | | Patch written by Stefan Behnel. | ||||
* | | Fix text duplication. Spotted by Nick Coghlan, thanks! | Éric Araujo | 2011-10-22 | 1 | -2/+2 |
| | | |||||
* | | Remove unused variable. | Ezio Melotti | 2011-10-22 | 1 | -1/+0 |
| | | |||||
* | | #12753: fix compilation on Windows. | Ezio Melotti | 2011-10-22 | 1 | -1/+2 |
| | | |||||
* | | #12753: Add support for Unicode name aliases and named sequences. | Ezio Melotti | 2011-10-21 | 10 | -17194/+18125 |
| | | |||||
* | | Banch merge | Éric Araujo | 2011-10-21 | 7 | -18/+161 |
|\ \ | |||||
| * | | Add tests for packaging.tests.support (#12659). | Éric Araujo | 2011-10-21 | 1 | -0/+78 |
| | | | | | | | | | | | | Thanks to Francisco Martín Brugué for the patch. | ||||
| * | | Document that packaging doesn’t create __init__.py files (#3902). | Éric Araujo | 2011-10-21 | 2 | -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 Araujo | 2011-10-21 | 3 | -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 Sajip | 2011-10-21 | 3 | -5/+23 |
| | | | |||||
* | | | Issue #12170: The count(), find(), rfind(), index() and rindex() methods | Antoine Pitrou | 2011-10-20 | 7 | -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 Xicluna | 2011-10-20 | 2 | -10/+12 |
|\ \ \ | | |/ | |/| | |||||
| * | | Issue #9168: now smtpd is able to bind privileged port. | Florent Xicluna | 2011-10-20 | 2 | -10/+12 |
| | | | |||||
* | | | #13233: null merge with 3.2. | Ezio Melotti | 2011-10-20 | 0 | -0/+0 |
|\ \ \ | |/ / | |||||
| * | | #13233: fix typo. | Ezio Melotti | 2011-10-20 | 1 | -1/+1 |
| | | | |||||
* | | | Merge heads. | Ezio Melotti | 2011-10-20 | 1 | -24/+30 |
|\ \ \ | |||||
| * \ \ | #13219: merge with 3.2. | Ezio Melotti | 2011-10-20 | 1 | -24/+30 |
| |\ \ \ | | |/ / | |||||
| | * | | #13219: clarify section about character sets in the re documentation. | Ezio Melotti | 2011-10-20 | 1 | -24/+30 |
| | | | | |||||
* | | | | merge | Raymond Hettinger | 2011-10-20 | 1 | -0/+6 |
|\ \ \ \ | |/ / / |