Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | | | Fix issue16300: addressing the buildbot failures on windows | Senthil Kumaran | 2012-10-23 | 1 | -2/+1 | |
| | | | | ||||||
* | | | | #16245: merge with 3.3. | Ezio Melotti | 2012-10-23 | 2 | -12/+14 | |
|\ \ \ \ | |/ / / | ||||||
| * | | | #16245: Fix the value of a few entities in html.entities.html5. | Ezio Melotti | 2012-10-23 | 2 | -12/+14 | |
| | | | | ||||||
* | | | | #16245: add a script to generate the html.entities.html5 dict. | Ezio Melotti | 2012-10-23 | 2 | -0/+106 | |
| | | | | ||||||
* | | | | Replace tabs with spaces in posixmodule.c | Petri Lehtinen | 2012-10-23 | 1 | -6/+6 | |
|\ \ \ \ | |/ / / | ||||||
| * | | | Replace tabs with spaces in posixmodule.c | Petri Lehtinen | 2012-10-23 | 1 | -6/+6 | |
| | | | | ||||||
* | | | | Issue #16241: document -X faulthandler command line option. | Andrew Svetlov | 2012-10-23 | 2 | -1/+3 | |
|\ \ \ \ | |/ / / | | | | | | | | | Patch by Marek Šuppa. | |||||
| * | | | Issue #16241: document -X faulthandler command line option. | Andrew Svetlov | 2012-10-23 | 2 | -1/+3 | |
| | | | | | | | | | | | | | | | | Patch by Marek Šuppa. | |||||
* | | | | Merge html.entities.html5 reordering with 3.3. | Ezio Melotti | 2012-10-23 | 1 | -109/+109 | |
|\ \ \ \ | |/ / / | ||||||
| * | | | Reorder html.entities.html5 entities to make updates easier. Patch by ↵ | Ezio Melotti | 2012-10-23 | 1 | -109/+109 | |
| | | | | | | | | | | | | | | | | Iuliia Proskurnia. | |||||
* | | | | Automated merge with ssh://hg.python.org/cpython | Senthil Kumaran | 2012-10-23 | 1 | -0/+1 | |
|\ \ \ \ | ||||||
| * | | | | skip the file localhost test on windows. Fix it on branch and modify the test | Senthil Kumaran | 2012-10-23 | 1 | -0/+1 | |
| | | | | | ||||||
* | | | | | Replace usage of the deprecated Py_UNICODE_COPY() with Py_MEMCPY() in ↵ | Victor Stinner | 2012-10-23 | 1 | -2/+2 | |
| | | | | | | | | | | | | | | | | | | | | resize_copy() | |||||
* | | | | | Optimize _PyUnicode_HasNULChars(): use findchar() instead of ↵ | Victor Stinner | 2012-10-23 | 1 | -7/+9 | |
| | | | | | | | | | | | | | | | | | | | | PyUnicode_Contains() | |||||
* | | | | | Inline raise_translate_exception(): it is only used once | Victor Stinner | 2012-10-23 | 1 | -15/+4 | |
| | | | | | ||||||
* | | | | | Optimize PyUnicode_RichCompare() for Py_EQ and Py_NE: always use memcmp() | Victor Stinner | 2012-10-23 | 1 | -26/+44 | |
|/ / / / | ||||||
* | | | | Fix the ResourceWarning in test_urllib.py due changes made for #16301. Patch ↵ | Senthil Kumaran | 2012-10-23 | 1 | -1/+2 | |
| | | | | | | | | | | | | | | | | by Berker Peksag | |||||
* | | | | Issue #15853: merge 3.3 -> default | Ned Deily | 2012-10-22 | 2 | -4/+6 | |
|\ \ \ \ | |/ / / | ||||||
| * | | | Issue #15853: merge 3.2 -> 3.3 | Ned Deily | 2012-10-22 | 2 | -4/+6 | |
| |\ \ \ | | |/ / | ||||||
| | * | | Issue #15853: Prevent IDLE crash on OS X when opening Preferences menu | Ned Deily | 2012-10-22 | 2 | -4/+6 | |
| | | | | | | | | | | | | | | | | with certain versions of Tk 8.5. Initial patch by Kevin Walzer. | |||||
* | | | | Issue #16301: Fix the localhost verification in urllib/request.py for ↵ | Senthil Kumaran | 2012-10-22 | 3 | -2/+5 | |
| | | | | | | | | | | | | | | | | file://. Modify tests to use localhost for local temp files, which could make Windows Buildbot (#16300) happy | |||||
* | | | | Add _sha3.pyd to list of extension modules for MSI | Christian Heimes | 2012-10-22 | 1 | -1/+2 | |
| | | | | ||||||
* | | | | Merge with 3.3: Issue #16295: Link "select" with ws2_32, the winsock2 lib. | Kristjan Valur Jonsson | 2012-10-22 | 1 | -8/+8 | |
|\ \ \ \ | |/ / / | ||||||
| * | | | Issue #16295: Link "select" with ws2_32.lib, the winsock2 stub library. | Kristjan Valur Jonsson | 2012-10-22 | 1 | -8/+8 | |
| | | | | ||||||
* | | | | MERGE: Closes #16294: 8 space indent in tutorial | Jesus Cea | 2012-10-22 | 1 | -2/+2 | |
|\ \ \ \ | |/ / / | ||||||
| * | | | MERGE: Closes #16294: 8 space indent in tutorial | Jesus Cea | 2012-10-22 | 1 | -2/+2 | |
| |\ \ \ | | |/ / | ||||||
| | * | | Closes #16294: 8 space indent in tutorial | Jesus Cea | 2012-10-22 | 1 | -2/+2 | |
| | | | | ||||||
* | | | | Issue #16250: Fix the invocations of URLError which had misplaced filename ↵ | Senthil Kumaran | 2012-10-22 | 3 | -15/+46 | |
| | | | | | | | | | | | | | | | | attribute for exception | |||||
* | | | | - Issue #16262: fix out-of-src-tree builds, if mercurial is not installed. | Matthias Klose | 2012-10-21 | 5 | -172/+163 | |
|\ \ \ \ | |/ / / | ||||||
| * | | | - Issue #16262: fix out-of-src-tree builds, if mercurial is not installed. | Matthias Klose | 2012-10-21 | 5 | -25/+31 | |
| |\ \ \ | | |/ / | ||||||
| | * | | - Issue #16262: fix out-of-src-tree builds, if mercurial is not installed. | Matthias Klose | 2012-10-21 | 4 | -24/+31 | |
| | | | | ||||||
* | | | | Issue #10836: Fix exception raised when file not found in urlretrieve | Senthil Kumaran | 2012-10-21 | 3 | -2/+10 | |
| | | | | ||||||
* | | | | backout ce9c9cbd1b11, Build the _sha3 module with VS 2008 | Christian Heimes | 2012-10-21 | 2 | -6/+0 | |
| | | | | ||||||
* | | | | Add VS 9 project file for _sha3 module | Christian Heimes | 2012-10-21 | 2 | -0/+531 | |
| | | | | ||||||
* | | | | Merge #14398: Fix size truncation and overflow bugs in bz2 module. | Nadeem Vawda | 2012-10-21 | 2 | -9/+26 | |
|\ \ \ \ | |/ / / | ||||||
| * | | | Merge #14398: Fix size truncation and overflow bugs in bz2 module. | Nadeem Vawda | 2012-10-21 | 2 | -9/+26 | |
| |\ \ \ | | |/ / | ||||||
| | * | | Issue #14398: Fix size truncation and overflow bugs in bz2 module. | Nadeem Vawda | 2012-10-21 | 4 | -153/+217 | |
| | | | | ||||||
* | | | | Issue #12692: Fix resource leak in urllib.request. | Nadeem Vawda | 2012-10-21 | 3 | -0/+10 | |
| | | | | ||||||
* | | | | Build the _sha3 module with VS 2008. | Antoine Pitrou | 2012-10-21 | 2 | -0/+6 | |
| | | | | ||||||
* | | | | Try to fix issue #16264 (test_logging failure on some buildbots). | Antoine Pitrou | 2012-10-21 | 1 | -1/+4 | |
| | | | | ||||||
* | | | | Issue #16034 follow-up: Apply optimizations to the lzma module. | Nadeem Vawda | 2012-10-21 | 2 | -29/+72 | |
| | | | | ||||||
* | | | | Issue #12034: Fix bogus caching of result in check_GetFinalPathNameByHandle. | Antoine Pitrou | 2012-10-21 | 2 | -2/+5 | |
| | | | | | | | | | | | | | | | | Patch by Atsuo Ishimoto. | |||||
* | | | | Issue #16220: wsgiref now always calls close() on an iterable response. | Antoine Pitrou | 2012-10-21 | 4 | -93/+29 | |
|\ \ \ \ | |/ / / | | | | | | | | | Patch by Brent Tubbs. | |||||
| * | | | Issue #16220: wsgiref now always calls close() on an iterable response. | Antoine Pitrou | 2012-10-21 | 4 | -93/+29 | |
| |\ \ \ | | |/ / | | | | | | | | | Patch by Brent Tubbs. | |||||
| | * | | Fix whacky spacking in test_wsgiref | Antoine Pitrou | 2012-10-21 | 1 | -57/+0 | |
| | | | | ||||||
| | * | | Issue #16220: wsgiref now always calls close() on an iterable response. | Antoine Pitrou | 2012-10-21 | 4 | -36/+29 | |
| | | | | | | | | | | | | | | | | Patch by Brent Tubbs. | |||||
* | | | | Merge PEP name fix with 3.3. | Ezio Melotti | 2012-10-21 | 1 | -3/+3 | |
|\ \ \ \ | |/ / / | ||||||
| * | | | Fix PEP name. | Ezio Melotti | 2012-10-21 | 1 | -3/+3 | |
| | | | | ||||||
* | | | | Merge typo fix with 3.3. | Ezio Melotti | 2012-10-21 | 1 | -1/+1 | |
|\ \ \ \ | |/ / / | ||||||
| * | | | Fix typo. | Ezio Melotti | 2012-10-21 | 1 | -1/+1 | |
| | | | |