summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | Fix issue #16270: urllib may hang when used for retrieving files via FTP by ↵Giampaolo Rodola'2012-10-192-6/+3
| | | | | | | | | | | | | | | | using a context manager.
* | | | Merge with 3.3Georg Brandl2012-10-191-318/+0
|\ \ \ \ | |/ / /
| * | | Fix merging mistake.Georg Brandl2012-10-191-318/+0
| | | |
* | | | Issue #16226: Fix IDLE Path Browser crash.Ned Deily2012-10-192-1/+8
|\ \ \ \ | |/ / / | | | | | | | | (Patch by Roger Serwy)
| * | | Issue #16226: Fix IDLE Path Browser crash.Ned Deily2012-10-192-1/+8
| | | | | | | | | | | | | | | | (Patch by Roger Serwy)
* | | | Issue 16280: Drop questionable special-casing of null pointer in ↵Mark Dickinson2012-10-181-6/+0
| | | | | | | | | | | | | | | | PyLong_FromVoidPtr.
* | | | Followup to issue #15958: add join.h to Makefile dependencies for byte stringsAntoine Pitrou2012-10-181-0/+1
| | | | | | | | | | | | | | | | (thanks Serhiy).
* | | | Issue #16277: merge fix from 3.3Mark Dickinson2012-10-181-0/+8
|\ \ \ \ | |/ / /
| * | | Issue #16277: merge fix from 3.2Mark Dickinson2012-10-181-0/+8
| |\ \ \ | | |/ /
| | * | Issue #16277: in PyLong_FromVoidPtr, add missing branch for sizeof(void*) <= ↵Mark Dickinson2012-10-181-0/+8
| | | | | | | | | | | | | | | | sizeof(long).
* | | | Merge from 3.3: clarify universal-newline wording in tutorial (issue #16266).Chris Jerdonek2012-10-181-3/+4
|\ \ \ \ | |/ / / | | | | | | | | This also null merges from a previous commit.
| * | | Merge from 3.2: clarify universal-newline wording in tutorial (issue #16266).Chris Jerdonek2012-10-181-3/+4
| |\ \ \ | | |/ /
| | * | Clarify universal-newline wording in tutorial (issue #16266).Chris Jerdonek2012-10-181-3/+4
| | |/
| * | Merge heads.Trent Nelson2012-10-175-4/+327
| |\ \
* | \ \ Merge heads.Trent Nelson2012-10-1719-112/+4504
|\ \ \ \
| * | | | Issue #16166: Add PY_LITTLE_ENDIAN and PY_BIG_ENDIAN macros and unifiedChristian Heimes2012-10-1715-108/+79
| | | | | | | | | | | | | | | | | | | | endianess detection and handling.
| * | | | merge headsAndrew Svetlov2012-10-171-0/+4416
| |\ \ \ \ | | | |/ / | | |/| |
| | * | | merge headsAndrew Svetlov2012-10-171-0/+318
| | |\ \ \ | | | | |/ | | | |/|
| | | * | null mergeAndrew Svetlov2012-10-172-2/+5
| | | |\ \
| | * | \ \ null mergeAndrew Svetlov2012-10-172-2/+5
| | |\ \ \ \
| * | \ \ \ \ null mergeAndrew Svetlov2012-10-172-2/+5
| |\ \ \ \ \ \
| | * \ \ \ \ \ Merge issue #9583: Document startup option/environment interaction.Andrew Svetlov2012-10-172-2/+5
| | |\ \ \ \ \ \ | | | | |/ / / / | | | |/| | | | | | | | | | | | Patch by Todd Rovito.
| | | * | | | | Merge issue #9583: Document startup option/environment interaction.Andrew Svetlov2012-10-172-2/+5
| | | |\ \ \ \ \ | | | | | |_|/ / | | | | |/| | | | | | | | | | | Patch by Todd Rovito.
| | | | * | | | Issue #9583: Document startup option/environment interaction.Andrew Svetlov2012-10-172-2/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Patch by Todd Rovito.
| * | | | | | | Issue #15378: Fix Tools/unicode/comparecodecs.py. Patch by Serhiy Storchaka.Antoine Pitrou2012-10-172-1/+3
| |\ \ \ \ \ \ \ | | |/ / / / / / | |/| | | / / / | | | |_|/ / / | | |/| | | |
| | * | | | | Issue #15378: Fix Tools/unicode/comparecodecs.py. Patch by Serhiy Storchaka.Antoine Pitrou2012-10-172-1/+3
| | |\ \ \ \ \ | | | |/ / / / | | |/| | / / | | | | |/ / | | | |/| |
| | | * | | Issue #15378: Fix Tools/unicode/comparecodecs.py. Patch by Serhiy Storchaka.Antoine Pitrou2012-10-172-1/+3
| | | |/ /
| * | | | Merge issue #16265: Fix collapsing of code sample in tutorial.Andrew Svetlov2012-10-171-1/+1
| |\ \ \ \ | | |/ / / | | | | | | | | | | Thanks to Yongzhi Pan from docs@
| | * | | Merge issue #16265: Fix collapsing of code sample in tutorial.Andrew Svetlov2012-10-171-1/+1
| | |\ \ \ | | | |/ / | | | | | | | | | | Thanks to Yongzhi Pan from docs@
| | | * | Issue #16265: Fix collapsing of code sample in tutorial.Andrew Svetlov2012-10-171-1/+1
| | | | | | | | | | | | | | | | | | | | Thanks to Yongzhi Pan from docs@
* | | | | Merge issue #15298.Trent Nelson2012-10-171-12/+17
|\ \ \ \ \ | |/ / / / |/| | | / | | |_|/ | |/| |
| * | | Issue #15298: refactor previous fix from 66959d419369.Trent Nelson2012-10-171-12/+17
| |/ /
* | | test_logging.py: where needed use unittest's assertGreater, assertLesser, ↵Giampaolo Rodola'2012-10-171-8/+8
| | | | | | | | | | | | assertIs rather than assertTrue (also in order to debug issue 16264)
* | | Issue #16257: make test_create_connection() handle ENETUNREACH.Trent Nelson2012-10-171-1/+20
|\ \ \ | |/ /
| * | Issue #16257: make test_create_connection() handle ENETUNREACH.Trent Nelson2012-10-171-1/+20
| |\ \ | | |/
| | * Issue #16257: make test_create_connection() handle ENETUNREACH.Trent Nelson2012-10-171-1/+20
| | |
* | | Issue #15819: use standard autoconf preset output variables.Trent Nelson2012-10-173-8/+4
|\ \ \ | |/ / | | | | | | Reported by: Roumen Petrov
| * | Issue #15819: use standard autoconf preset output variables.Trent Nelson2012-10-173-8/+4
| |\ \ | | |/ | | | | | | Reported by: Roumen Petrov
| | * Issue #15819: use standard autoconf preset output variables.Trent Nelson2012-10-173-8/+4
| | | | | | | | | | | | Reported by: Roumen Petrov
* | | Merge issue #15298: fix an OS X bootstrap issue with _sysconfigdata.py.Trent Nelson2012-10-171-6/+19
|\ \ \ | |/ /
| * | Issue #15298: fix an OS X bootstrap issue with _sysconfigdata.py.Trent Nelson2012-10-171-6/+19
| | | | | | | | | | | | Reported by: Ned Deily.
* | | merge for issue #16160: Subclass support now works for types.SimpleNamespace.Eric Snow2012-10-173-12/+23
|\ \ \ | |/ /
| * | Close #16160: Subclass support now works for types.SimpleNamespace. Thanks ↵Eric Snow2012-10-173-12/+23
| | | | | | | | | | | | to RDM for noticing.
* | | Merge: A couple more whatsnew updates.R David Murray2012-10-172-1/+15
|\ \ \ | |/ /
| * | A couple more whatsnew updates.R David Murray2012-10-172-1/+15
| | |
* | | Merge for issue #15744: add tests for the writelines() method of file objects.Antoine Pitrou2012-10-162-1/+68
|\ \ \ | |/ /
| * | Merge for issue #15744: add tests for the writelines() method of file objects.Antoine Pitrou2012-10-162-1/+68
| |\ \ | | |/
| | * Also add tests for TextIOWrapper.writelines() (issue #15744).Antoine Pitrou2012-10-161-0/+22
| | |
| | * Add tests for the writelines() method of file objects.Antoine Pitrou2012-10-162-1/+46
| | | | | | | | | | | | Original patch by Felipe Cruz.
* | | Reformat _tkinter code to follow PEP7Andrew Svetlov2012-10-161-56/+72
| | |