- 441adb8 Backout changeset 46393019b650 by Victor Stinner · 12 years ago
- 775632b #19957: Simplify encode_7or8bit now that _payload is always str. by R David Murray · 12 years ago
- cd0cb8c Close #19787: PyThread_set_key_value() now always set the value. In Python 3.3, by Victor Stinner · 12 years ago
- 24bd028 Issue #19952: test_asyncio: relax timings of Windows events, buildbots are by Victor Stinner · 12 years ago
- 2aeb070 (Merge 3.3) Issue #14432: Fix compilation when thread support is disabled by Victor Stinner · 12 years ago
- 258e4d3 Issue #14432: Fix compilation when thread support is disabled by Victor Stinner · 12 years ago
- c47fb54 Issue #14432: Null merge 3.3, Python 3.4 has a different fix by Victor Stinner · 12 years ago
- 1310510 Issue #14432: Generator now clears the borrowed reference to the thread state by Victor Stinner · 12 years ago
- fdeb6ec Issue #14432: Remove the thread state field from the frame structure. Fix a by Victor Stinner · 12 years ago
- 62ca100 Close #19576: PyGILState_Ensure() now initializes threads. At startup, Python by Victor Stinner · 12 years ago
- 56668dc Issue #19751: Fix hash_info test of test_sys on SPARC Solaris by Victor Stinner · 12 years ago
- 4b6d4b5 Issue #19751: Fix typo in configuration option by Victor Stinner · 12 years ago
- 5bf91dc Merge from 3.3. by Stefan Krah · 12 years ago
- da12ada Do not discard const qualifier without a reason. by Stefan Krah · 12 years ago
- 8fda474 Merge fix from 3.3 by Zachary Ware · 12 years ago
- 0f533ac Avoid UnicodeEncodeError by only printing ASCII. by Zachary Ware · 12 years ago
- 1c4b892 Add a sequence diagram for the chained coroutines example by Victor Stinner · 12 years ago
- f06247d Properly filter some recent additions in the Windows build files. by Zachary Ware · 12 years ago
- e2ed78e Null merge with 3.3. by Zachary Ware · 12 years ago
- bdbffd0 Filter namespaceobject's files properly in the pythoncore VS project. by Zachary Ware · 12 years ago
- 63321b4 Issue #19828: Merge with 3.3 by Zachary Ware · 12 years ago
- 36193e7 Issue #19828: Fixed test_site when the whole suite is run with -S. by Zachary Ware · 12 years ago
- 50bfbb9 #19063: fix set_payload handling of non-ASCII string input. by R David Murray · 12 years ago
- 34bd9fc Null merge for #19063 (3.4 fix is different). by R David Murray · 12 years ago
- d5c4c74 #19063: partially fix set_payload handling of non-ASCII string input. by R David Murray · 12 years ago
- c4f3212 Issue #17576: Deprecation warning emitted now when __int__() or __index__() by Serhiy Storchaka · 12 years ago
- 31a6554 Issue #17576: Deprecation warning emitted now when __int__() or __index__() by Serhiy Storchaka · 12 years ago
- b282b3d Issue #18864: Add a setter for ModuleSpec.has_location. by Eric Snow · 12 years ago
- 85cce1e null merge (3.4 doesn't need this fix) by Gregory P. Smith · 12 years ago
- acd1730 Fixes Issue #17200: telnetlib's read_until and expect timeout was broken by the by Gregory P. Smith · 12 years ago
- e72b90e Issue #18270: merge from 3.3 by Ned Deily · 12 years ago
- f3c6589 Issue #18270: Prevent possible IDLE AttributeError on OS X when no initial by Ned Deily · 12 years ago
- 7f7f3d7 Issue #19928: Fix test on Windows by Zachary Ware · 12 years ago
- ea6854a Issue #19928: Fix test on Windows by Zachary Ware · 12 years ago
- 20719ac #19943: merge with 3.3. by Ezio Melotti · 12 years ago
- d082b68 #19943: fix typo noticed by Jakub Wilk. by Ezio Melotti · 12 years ago
- 184ec79 Remove commented out debugging code (remnants of issue #18996). by Serhiy Storchaka · 12 years ago
- 1f609e9 Issue #19407: merge PPUG notes from 3.3 by Nick Coghlan · 12 years ago
- b5c4fd0 Issue #19407: add Python Packaging User Guide notes by Nick Coghlan · 12 years ago
- a6fa153 asyncio doc: simplify task example by Victor Stinner · 12 years ago
- 0839ed4 asyncio doc: don't document Task.cancel(), already documented in Future.cancel() by Victor Stinner · 12 years ago
- 742520b asyncio: document Task.current_task() by Victor Stinner · 12 years ago
- 2a446bf Issue #19928: Implemented a test for repr() of cell objects. by Serhiy Storchaka · 12 years ago
- 1f79cdf Issue #19928: Implemented a test for repr() of cell objects. by Serhiy Storchaka · 12 years ago
- 0ed6c4a Issue #19481: print() of string subclass instance in IDLE no more hangs. by Serhiy Storchaka · 12 years ago
- 9df8a1c Issue #19481: print() of string subclass instance in IDLE no more hangs. by Serhiy Storchaka · 12 years ago
- e3c39dd Remove commented-out module spec test code and an out-of-date note. by Eric Snow · 12 years ago
- c1e7c74 Issue 19851: Fix a regression in reloading submodules. by Eric Snow · 12 years ago
- fc25d62 asyncio: don't document private functions by Victor Stinner · 12 years ago
- 34f2946 asyncio: fix 2nd task example by Victor Stinner · 12 years ago
- dbd8950 asyncio doc: rewrite the callback hello world to use call_soon() instead of a by Victor Stinner · 12 years ago
- b69d62d assyncio doc: rewrite, improve and move coroutine, Future and Task examples by Victor Stinner · 12 years ago
- b077c05 (Merge 3.3) Issue #19932: Fix typo in import.h, missing whitespaces in function prototypes. by Victor Stinner · 12 years ago
- d860d5c Issue #19932: Fix typo in import.h, missing whitespaces in function prototypes. by Victor Stinner · 12 years ago
- 29e6454 Fix typo. by Stefan Krah · 12 years ago
- 345ec35 Fix whitespace. by Stefan Krah · 12 years ago
- 2d181de Merge 3.3. by Stefan Krah · 12 years ago
- 2dae92a Issue #15475: Add __sizeof__ implementations for itertools objects. by Serhiy Storchaka · 12 years ago
- a881a7f asyncio doc: explain why the loop is running twice by Victor Stinner · 12 years ago
- d8f11e9 asyncio: another Future example using add_done_callback() by Victor Stinner · 12 years ago
- 45c2fd9 asyncio doc: add an example with Future by Victor Stinner · 12 years ago
- 52ce3b0 Issue #19817: Fix print_exception(), clear the exception on error by Victor Stinner · 12 years ago
- 383bff4 Backed out changeset c4c1c4bc8086 by Victor Stinner · 12 years ago
- 1adc237 Issue #19876: Run also test_selectors.test_unregister_after_fd_close_and_reuse() on Windows by Victor Stinner · 12 years ago
- 031bd53 Close #19880: Fix a reference leak in unittest.TestCase. Explicitly break by Victor Stinner · 12 years ago
- 28dd6de Fix #19830: Fix a ResourceWarning in test_poplib. Patch written by Vajrasky Kok. by Victor Stinner · 12 years ago
- 8622ac3 (Merge 3.3) Issue #17429: Oops, remove unused import by Victor Stinner · 12 years ago
- 271493b Issue #17429: Oops, remove unused import by Victor Stinner · 12 years ago
- ced3936 Issue #17429: some PEP 8 compliance fixes for the platform modules, add whitespaces by Victor Stinner · 12 years ago
- 0aba1a2 (Merge 3.3) Issue #17429: platform.linux_distribution() now decodes files from by Victor Stinner · 12 years ago
- 620c48b Issue #17429: platform.linux_distribution() now decodes files from the UTF-8 by Victor Stinner · 12 years ago
- 1761fa9 Add libmpdec license. by Stefan Krah · 12 years ago
- 37d4e0b Fix two typos. by Stefan Krah · 12 years ago
- 42e3b60 Missed one copyright. by Stefan Krah · 12 years ago
- 7b83b18 Fixes issue #19929: Call os.read with 32768 within subprocess.Popen by Gregory P. Smith · 12 years ago
- 589ecda Fixes issue #19929: Call os.read with 32768 within subprocess.Popen by Gregory P. Smith · 12 years ago
- ecff655 Update copyright. The four year increment is intentional (to save work). by Stefan Krah · 12 years ago
- bd6932a Closes #18430: Document that peek() may change the position of the underlying by Nadeem Vawda · 12 years ago
- 6976104 #18430: Document that peek() may change the position of the underlying file for by Nadeem Vawda · 12 years ago
- b12cb6a Issue #19535: Fixed test_docxmlrpc, test_functools, test_inspect, and by Serhiy Storchaka · 12 years ago
- 3e60a9d Issue #19535: Fixed test_docxmlrpc when python is run with -OO. by Serhiy Storchaka · 12 years ago
- ca616a2 - Issue #19736: Add module-level statvfs constants defined for GNU/glibc by doko@ubuntu.com · 12 years ago
- b02bcae Attempt to fix OpenIndiana build issue introduced by #19922 by Christian Heimes · 12 years ago
- 5bb414d Issue #19343: Expose FreeBSD-specific APIs in resource module. Original patch by Koobs. by Christian Heimes · 12 years ago
- ead8d08 Fix test_selectors failure introduced by 39e7995f9ad1. by Charles-François Natali · 12 years ago
- f491f92 Remove mentions of Python 2.x and being externally maintained from by Gregory P. Smith · 12 years ago
- a82f74d Remove mentions of Python 2.x and being externally maintained from by Gregory P. Smith · 12 years ago
- 34bc897 Issue #19926: Removed unneeded test_main from test_abstract_numbers. by Zachary Ware · 12 years ago
- 4adb37c Issue #19926: Removed unneeded test_main from test_abstract_numbers. by Zachary Ware · 12 years ago
- 101d9e7 Issue 19572: More silently skipped tests explicitly skipped. by Zachary Ware · 12 years ago
- 7ef00ff Normalize whitespace by Zachary Ware · 12 years ago
- 9fe6d86 Issue 19572: More silently skipped tests explicitly skipped. by Zachary Ware · 12 years ago
- 5ca129b Fixes issue #19506: Use a memoryview to avoid a data copy when piping data by Gregory P. Smith · 12 years ago
- 774f909 Fixes issue #19506: Use a memoryview to avoid a data copy when piping data by Gregory P. Smith · 12 years ago
- 5c29424 Issue #19758: silence PendingDeprecationWarnings in test_importlib. by Eric Snow · 12 years ago
- c0e71cd News item for issue 19876. by Guido van Rossum · 12 years ago
- 9710ff0 Silently ignore unregistering closed files. Fixes issue 19876. With docs and slight test refactor. by Guido van Rossum · 12 years ago
- 647cd87 Issue #19922: define _INCLUDE__STDC_A1_SOURCE in HP-UX to include mbstate_t by Christian Heimes · 12 years ago
- 35175a8 Merge. by Charles-François Natali · 12 years ago
- 6c527cf Issue #19857: Make sure that test_imaplib reaps server threads even in face of by Charles-François Natali · 12 years ago