summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* #15872: Some more Windows related tuning to shutil.rmtree testsHynek Schlawack2012-12-101-7/+7
|\
| * #15872: Some more Windows related tuning to shutil.rmtree testsHynek Schlawack2012-12-101-7/+7
| |\
| | * #15872: Some more Windows related tuning to shutil.rmtree testsHynek Schlawack2012-12-101-8/+7
* | | #15872: Be flexible with appending *.* in shutil.rmtree test caseHynek Schlawack2012-12-101-3/+7
|\ \ \ | |/ /
| * | #15872: Be flexible with appending *.* in shutil.rmtree test caseHynek Schlawack2012-12-101-1/+1
| |\ \ | | |/
| | * #15872: Be flexible with appending *.* in shutil.rmtree test caseHynek Schlawack2012-12-101-1/+1
* | | #15872: More shutil test fixes for WindowsHynek Schlawack2012-12-101-5/+1
|\ \ \ | |/ /
| * | #15872: More shutil test fixes for WindowsHynek Schlawack2012-12-101-2/+2
| |\ \ | | |/
| | * #15872: More shutil test fixes for WindowsHynek Schlawack2012-12-101-2/+2
* | | Fix Issue15701 : add .headers attribute to urllib.error.HTTPErrorSenthil Kumaran2012-12-102-1/+13
* | | #15872: Fix shutil.rmtree error tests for WindowsHynek Schlawack2012-12-101-1/+5
|\ \ \ | |/ /
| * | #15872: Fix shutil.rmtree error tests for WindowsHynek Schlawack2012-12-101-1/+5
| |\ \ | | |/
| | * #15872: Fix shutil.rmtree error tests for WindowsHynek Schlawack2012-12-101-1/+5
* | | #15872: Fix 3.3 regression introduced by the new fd-based shutil.rmtreeHynek Schlawack2012-12-102-10/+58
|\ \ \ | |/ /
| * | #15872: Fix 3.3 regression introduced by the new fd-based shutil.rmtreeHynek Schlawack2012-12-102-10/+58
| |\ \ | | |/
| | * #15872: Add tests for a 3.3 regression in the new fd-based shutil.rmtreeHynek Schlawack2012-12-101-0/+46
* | | Issue #16629: Merge IDLE test fix from 3.3.Chris Jerdonek2012-12-101-1/+1
|\ \ \ | |/ /
| * | Issue #16629: Merge IDLE test fix from 3.2.Chris Jerdonek2012-12-101-1/+1
| |\ \ | | |/
| | * Issue #16629: Fix IDLE idlelib.CallTips test. Patch by Roger Serwy.Chris Jerdonek2012-12-101-1/+1
* | | Issue #16582: use int exit code in tkinter._exitAndrew Svetlov2012-12-091-1/+5
|\ \ \ | |/ /
| * | Issue #16582: use int exit code in tkinter._exitAndrew Svetlov2012-12-091-1/+5
| |\ \ | | |/
| | * Issue #16582: use int exit code in tkinter._exitAndrew Svetlov2012-12-091-1/+5
* | | Make test of poll() use unbuffered IORichard Oudkerk2012-12-091-3/+6
* | | Issue #16616: Enable test in test_poll which was (accidentally?) disabledRichard Oudkerk2012-12-091-6/+4
* | | Issue #16248: Disable code execution from the user's home directory by tkinte...Antoine Pitrou2012-12-091-1/+3
|\ \ \ | |/ /
| * | Issue #16248: Disable code execution from the user's home directory by tkinte...Antoine Pitrou2012-12-091-1/+3
| |\ \ | | |/
| | * Issue #16248: Disable code execution from the user's home directory by tkinte...Antoine Pitrou2012-12-091-1/+3
* | | Issue #13390: New function :func:`sys.getallocatedblocks()` returns the numbe...Antoine Pitrou2012-12-093-18/+62
* | | Merge fixes for #13614, #13512 and #7719 from 3.3Éric Araujo2012-12-096-29/+51
|\ \ \ | |/ /
| * | Merge fixes for #13614, #13512 and #7719 from 3.2Éric Araujo2012-12-096-29/+51
| |\ \ | | |/
| | * Branch mergeÉric Araujo2012-12-096-29/+51
| | |\
| | | * Fix setup.py register failure with invalid rst in description (#13614).Éric Araujo2012-12-092-11/+26
| | | * Create ~/.pypirc securely (#13512).Éric Araujo2012-12-081-10/+1
| | | * Ignore .nfs* files in distutils (#7719).Éric Araujo2012-12-083-8/+24
* | | | Issue #16602: When a weakref's target was part of a long deallocation chain, ...Antoine Pitrou2012-12-081-0/+21
|\ \ \ \ | |/ / /
| * | | Issue #16602: When a weakref's target was part of a long deallocation chain, ...Antoine Pitrou2012-12-081-0/+21
| |\ \ \ | | |/ /
| | * | Issue #16602: When a weakref's target was part of a long deallocation chain, ...Antoine Pitrou2012-12-081-0/+21
| | |/
* | | add fixer for reload() -> imp.reload() (closes #11797)\n\nPatch by Laurie Cla...Benjamin Peterson2012-12-084-18/+113
* | | Improve OrderedDict equality test.Raymond Hettinger2012-12-071-2/+1
* | | create NameConstant AST class for None, True, and False literals (closes #16619)Benjamin Peterson2012-12-063-11/+12
* | | Merge: skip pdb test for #13120 if threading is not available.Andrew Svetlov2012-12-051-0/+3
|\ \ \ | |/ /
| * | Merge: skip pdb test for #13120 if threading is not available.Andrew Svetlov2012-12-051-0/+3
| |\ \ | | |/
| | * Skip pdb test for #13120 if threading is not available.Andrew Svetlov2012-12-051-0/+3
* | | Issue #15627: This is simply an update to the name of a new method recently a...Eric Snow2012-12-052-4/+4
* | | Issue #16444: test more bytes in support.TESTFN_UNDECODABLE to support more W...Victor Stinner2012-12-041-0/+3
* | | Merge issue #13120: Allow to call pdb.set_trace() from thread.Andrew Svetlov2012-12-042-2/+36
|\ \ \ | |/ /
| * | Merge issue #13120: Allow to call pdb.set_trace() from thread.Andrew Svetlov2012-12-042-2/+36
| |\ \ | | |/
| | * Issue #13120: Allow to call pdb.set_trace() from thread.Andrew Svetlov2012-12-042-2/+36
* | | Issue #16455: On FreeBSD and Solaris, if the locale is C, theVictor Stinner2012-12-041-5/+4
* | | Fix test splitting in previous commit.Antoine Pitrou2012-12-031-4/+2
|\ \ \ | |/ /