summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge from 3.3.Stefan Krah2013-12-121-7/+7
|\
| * Do not discard const qualifier without a reason.Stefan Krah2013-12-121-7/+7
| |
* | Merge fix from 3.3Zachary Ware2013-12-121-2/+2
|\ \ | |/
| * Avoid UnicodeEncodeError by only printing ASCII.Zachary Ware2013-12-121-2/+2
| | | | | | | | | | This fixes running test_decimal in verbose mode on Windows, which I broke in issue #19572.
* | Add a sequence diagram for the chained coroutines exampleVictor Stinner2013-12-123-1/+10
| |
* | Properly filter some recent additions in the Windows build files.Zachary Ware2013-12-113-2/+44
| |
* | Null merge with 3.3.Zachary Ware2013-12-110-0/+0
|\ \ | |/ | | | | | | There are enough new things to make the merge harder than making the change in VS, and there are other things to add filters for in 3.4.
| * Filter namespaceobject's files properly in the pythoncore VS project.Zachary Ware2013-12-111-2/+6
| |
* | Issue #19828: Merge with 3.3Zachary Ware2013-12-112-9/+10
|\ \ | |/
| * Issue #19828: Fixed test_site when the whole suite is run with -S.Zachary Ware2013-12-112-9/+10
| | | | | | | | Also, cleaned up an unused import.
* | #19063: fix set_payload handling of non-ASCII string input.R David Murray2013-12-116-38/+85
| | | | | | | | | | This version of the fix raises an error instead of accepting the invalid input (ie: if a non-ASCII string is used but no charset is specified).
* | Null merge for #19063 (3.4 fix is different).R David Murray2013-12-110-0/+0
|\ \ | |/
| * #19063: partially fix set_payload handling of non-ASCII string input.R David Murray2013-12-114-11/+63
| | | | | | | | | | | | This is a backward compatible partial fix, the complete fix requires raising an error instead of accepting the invalid input, so the real fix is only suitable for 3.4.
* | Issue #17576: Deprecation warning emitted now when __int__() or __index__()Serhiy Storchaka2013-12-117-186/+312
|\ \ | |/ | | | | | | return not int instance. Introduced _PyLong_FromNbInt() and refactored PyLong_As*() functions.
| * Issue #17576: Deprecation warning emitted now when __int__() or __index__()Serhiy Storchaka2013-12-117-186/+312
| | | | | | | | | | return not int instance. Introduced _PyLong_FromNbInt() and refactored PyLong_As*() functions.
* | Issue #18864: Add a setter for ModuleSpec.has_location.Eric Snow2013-12-115-2910/+2932
| |
* | null merge (3.4 doesn't need this fix)Gregory P. Smith2013-12-110-0/+0
|\ \ | |/
| * Fixes Issue #17200: telnetlib's read_until and expect timeout was broken by theGregory P. Smith2013-12-112-2/+9
| | | | | | | | | | | | fix to Issue #14635 in Python 3.3.0 to be interpreted as milliseconds instead of seconds when the platform supports select.poll (ie: everywhere). It is now treated as seconds once again.
* | Issue #18270: merge from 3.3Ned Deily2013-12-112-12/+18
|\ \ | |/
| * Issue #18270: Prevent possible IDLE AttributeError on OS X when no initialNed Deily2013-12-112-12/+18
| | | | | | | | shell window is present. (Original patch by Terry Reedy)
* | Issue #19928: Fix test on WindowsZachary Ware2013-12-101-2/+2
|\ \ | |/
| * Issue #19928: Fix test on WindowsZachary Ware2013-12-101-2/+2
| |
* | #19943: merge with 3.3.Ezio Melotti2013-12-101-1/+1
|\ \ | |/
| * #19943: fix typo noticed by Jakub Wilk.Ezio Melotti2013-12-101-1/+1
| |
* | Remove commented out debugging code (remnants of issue #18996).Serhiy Storchaka2013-12-101-2/+0
| |
* | Issue #19407: merge PPUG notes from 3.3Nick Coghlan2013-12-103-5/+32
|\ \ | |/
| * Issue #19407: add Python Packaging User Guide notesNick Coghlan2013-12-103-5/+32
| | | | | | | | | | | | | | | | | | | | The stdlib docs for package distribution and building extensions are rather dated, and that isn't expected to change for 2.7 and 3.3. The Python Packaging User Guide isn't complete either, but it's already a much better road map for new users than the existing stdlib docs.
* | asyncio doc: simplify task exampleVictor Stinner2013-12-101-4/+4
| |
* | asyncio doc: don't document Task.cancel(), already documented in Future.cancel()Victor Stinner2013-12-101-4/+0
| |
* | asyncio: document Task.current_task()Victor Stinner2013-12-101-0/+8
| |
* | Issue #19928: Implemented a test for repr() of cell objects.Serhiy Storchaka2013-12-102-3/+11
|\ \ | |/
| * Issue #19928: Implemented a test for repr() of cell objects.Serhiy Storchaka2013-12-102-3/+11
| |
* | Issue #19481: print() of string subclass instance in IDLE no more hangs.Serhiy Storchaka2013-12-102-2/+10
|\ \ | |/
| * Issue #19481: print() of string subclass instance in IDLE no more hangs.Serhiy Storchaka2013-12-102-2/+10
| |
* | Remove commented-out module spec test code and an out-of-date note.Eric Snow2013-12-101-10/+0
| |
* | Issue 19851: Fix a regression in reloading submodules.Eric Snow2013-12-103-4/+81
| |
* | asyncio: don't document private functionsVictor Stinner2013-12-101-8/+0
| |
* | asyncio: fix 2nd task exampleVictor Stinner2013-12-101-16/+16
| |
* | asyncio doc: rewrite the callback hello world to use call_soon() instead of aVictor Stinner2013-12-101-1/+1
| | | | | | | | direct call.
* | assyncio doc: rewrite, improve and move coroutine, Future and Task examplesVictor Stinner2013-12-101-142/+152
| |
* | (Merge 3.3) Issue #19932: Fix typo in import.h, missing whitespaces in ↵Victor Stinner2013-12-102-4/+6
|\ \ | |/ | | | | function prototypes.
| * Issue #19932: Fix typo in import.h, missing whitespaces in function prototypes.Victor Stinner2013-12-102-4/+6
| |
* | Fix typo.Stefan Krah2013-12-091-1/+1
| |
* | Fix whitespace.Stefan Krah2013-12-091-1/+1
| |
* | Merge 3.3.Stefan Krah2013-12-0936-36/+69
|\ \ | |/
| * Add libmpdec license.Stefan Krah2013-12-081-0/+33
| |
| * Fix two typos.Stefan Krah2013-12-082-2/+2
| |
| * Missed one copyright.Stefan Krah2013-12-081-1/+1
| |
| * Update copyright. The four year increment is intentional (to save work).Stefan Krah2013-12-0833-33/+33
| |
* | Issue #15475: Add __sizeof__ implementations for itertools objects.Serhiy Storchaka2013-12-093-1/+95
| |