summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Collapse)AuthorAgeFilesLines
* Issue #16706: get rid of os.errorAndrew Svetlov2012-12-184-5/+5
|
* Issue #16714: use 'raise' exceptions, don't 'throw'.Andrew Svetlov2012-12-1815-27/+27
|\ | | | | | | Patch by Serhiy Storchaka.
| * Issue #16714: use 'raise' exceptions, don't 'throw'.Andrew Svetlov2012-12-1815-27/+27
| |\ | | | | | | | | | Patch by Serhiy Storchaka.
| | * Issue #16714: use 'raise' exceptions, don't 'throw'.Andrew Svetlov2012-12-1814-25/+25
| | | | | | | | | | | | Patch by Serhiy Storchaka.
| | * Fix ResourceWarnings in test_ptyAntoine Pitrou2012-12-161-3/+5
| | |
* | | Relax test when WITH_PYMALLOC is false or undefined.Antoine Pitrou2012-12-181-1/+4
| | |
* | | Following issue #13390, fix compilation --without-pymalloc, and make ↵Antoine Pitrou2012-12-171-1/+6
| | | | | | | | | | | | sys.getallocatedblocks() return 0 in that situation.
* | | Get rig of EnvironmentError (#16705)Andrew Svetlov2012-12-179-19/+18
| | |
* | | Replace mmap.error with OSError, #16705Andrew Svetlov2012-12-171-2/+2
| | |
* | | Issue #16704: Get rid of select.error in stdlib. Use OSError instead.Andrew Svetlov2012-12-173-4/+4
| | |
* | | Cleanup: remove not needed mocks.Andrew Svetlov2012-12-171-6/+0
| | |
* | | Issue #16647: save socket error details in LMTP.connect()Andrew Svetlov2012-12-172-8/+4
|\ \ \ | |/ / | | | | | | Initial patch by Serhiy Storchaka.
* | | Merge 3.3.Stefan Krah2012-12-161-0/+21
|\ \ \ | |/ /
| * | Issue #15783: Support None default values in the Context() constructor.Stefan Krah2012-12-161-0/+21
| | |
* | | Silence sporadic failure in RecvmsgSCTPStreamTest.testRecvmsgEOF (issue ↵Antoine Pitrou2012-12-161-1/+8
|\ \ \ | |/ / | | | | | | #13876) - probably not Python-related.
| * | Silence sporadic failure in RecvmsgSCTPStreamTest.testRecvmsgEOF (issue ↵Antoine Pitrou2012-12-161-1/+8
| | | | | | | | | | | | #13876) - probably not Python-related.
* | | Issue #16696: fix comparison between bytes and string. Also, improve glob tests.Antoine Pitrou2012-12-161-5/+28
|\ \ \ | |/ /
| * | Issue #16696: fix comparison between bytes and string. Also, improve glob tests.Antoine Pitrou2012-12-161-5/+28
| |\ \ | | |/
| | * Issue #16696: fix comparison between bytes and string. Also, improve glob tests.Antoine Pitrou2012-12-161-5/+28
| | |
* | | Issue #16626: Fix infinite recursion in glob.glob() on Windows when the ↵Antoine Pitrou2012-12-161-0/+13
|\ \ \ | |/ / | | | | | | | | | | | | pattern contains a wildcard in the drive or UNC path. Patch by Serhiy Storchaka.
| * | Issue #16626: Fix infinite recursion in glob.glob() on Windows when the ↵Antoine Pitrou2012-12-161-0/+13
| |\ \ | | |/ | | | | | | | | | | | | pattern contains a wildcard in the drive or UNC path. Patch by Serhiy Storchaka.
| | * Issue #16626: Fix infinite recursion in glob.glob() on Windows when the ↵Antoine Pitrou2012-12-161-0/+13
| | | | | | | | | | | | | | | | | | pattern contains a wildcard in the drive or UNC path. Patch by Serhiy Storchaka.
* | | #16664: Add regression tests for glob's behaviour concerning "."-entriesHynek Schlawack2012-12-161-1/+6
|\ \ \ | |/ / | | | | | | Patch by Sebastian Kreft.
| * | #16664: Add regression tests for glob's behaviour concerning "."-entriesHynek Schlawack2012-12-161-1/+6
| |\ \ | | |/ | | | | | | Patch by Sebastian Kreft.
| | * #16664: Add regression tests for glob's behaviour concerning "."-entriesHynek Schlawack2012-12-161-1/+6
| | | | | | | | | | | | Patch by Sebastian Kreft.
* | | Merge 3.3.Stefan Krah2012-12-151-8/+294
|\ \ \ | |/ /
| * | Issue #15783: Except for the number methods, the C version of decimal nowStefan Krah2012-12-151-8/+294
| | | | | | | | | | | | | | | supports all None default values present in decimal.py. These values were largely undocumented.
* | | #11175: argparse.FileType now accepts encoding and errors arguments.Petri Lehtinen2012-12-151-0/+32
| | | | | | | | | | | | Patch by Lucas Maystre.
* | | Issue #16488: epoll() objects now support the `with` statement.Antoine Pitrou2012-12-151-0/+7
| | | | | | | | | | | | Patch by Serhiy Storchaka.
* | | MergeAntoine Pitrou2012-12-151-0/+5
|\ \ \
| * | | use error label instead of breaking eval loop (closes #16693)Benjamin Peterson2012-12-151-0/+5
| | | |
* | | | Issue #16298: In HTTPResponse.read(), close the socket when there is no ↵Antoine Pitrou2012-12-151-2/+34
|\ \ \ \ | |/ / / |/| / / | |/ / | | | | | | Content-Length and the incoming stream is finished. Patch by Eran Rundstein.
| * | Issue #16298: In HTTPResponse.read(), close the socket when there is no ↵Antoine Pitrou2012-12-151-2/+34
| |\ \ | | |/ | | | | | | | | | | | | Content-Length and the incoming stream is finished. Patch by Eran Rundstein.
| | * Issue #16298: In HTTPResponse.read(), close the socket when there is no ↵Antoine Pitrou2012-12-151-1/+14
| | | | | | | | | | | | | | | | | | Content-Length and the incoming stream is finished. Patch by Eran Rundstein.
* | | Rename test module names for #16421 to don't clash with other tests.Andrew Svetlov2012-12-151-4/+4
| | |
* | | Issue #16421: allow to load multiple modules from the same shared object.Andrew Svetlov2012-12-141-0/+14
| | | | | | | | | | | | Patch by Václav Šmilauer.
* | | Issue #16049: add abc.ABC helper class.Andrew Svetlov2012-12-131-0/+13
| | | | | | | | | | | | Patch by Bruno Dupuis.
* | | Merge with 3.3 for #16661Ross Lagerwall2012-12-131-10/+3
|\ \ \ | |/ /
| * | Issue #16661: Fix the os.getgrouplist() test by not assuming that itRoss Lagerwall2012-12-131-10/+3
| | | | | | | | | | | | gives the same output as "id -G".
* | | #15872: Some more Windows related tuning to shutil.rmtree testsHynek Schlawack2012-12-101-7/+7
|\ \ \ | |/ / | | | | | | | | | | | | Turns out, the snakebite bots have also their peculiarities. I'm really not proud of this stream of commits. :(
| * | #15872: Some more Windows related tuning to shutil.rmtree testsHynek Schlawack2012-12-101-7/+7
| |\ \ | | |/ | | | | | | | | | | | | Turns out, the snakebite bots behave also their peculiarities. I'm really not proud of this stream of commits. :(
| | * #15872: Some more Windows related tuning to shutil.rmtree testsHynek Schlawack2012-12-101-8/+7
| | | | | | | | | | | | | | | | | | Turns out, the snakebite bots behave also their peculiarities. I'm really not proud of this stream of commits. :(
* | | #15872: Be flexible with appending *.* in shutil.rmtree test caseHynek Schlawack2012-12-101-3/+7
|\ \ \ | |/ / | | | | | | The Windows buildbots seem to be unable to agree whether they need them or not.
| * | #15872: Be flexible with appending *.* in shutil.rmtree test caseHynek Schlawack2012-12-101-1/+1
| |\ \ | | |/ | | | | | | The Windows buildbots seem to be unable to agree whether they need them or not.
| | * #15872: Be flexible with appending *.* in shutil.rmtree test caseHynek Schlawack2012-12-101-1/+1
| | | | | | | | | | | | The Windows buildbots seem to be unable to agree whether they need them or not.
* | | #15872: More shutil test fixes for WindowsHynek Schlawack2012-12-101-5/+1
|\ \ \ | |/ / | | | | | | | | | This one is different from 3.2 and 3.3. Windows ceased using *.* since 3.4 apparently.
| * | #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-101-1/+5
| | |
* | | #15872: Fix shutil.rmtree error tests for WindowsHynek Schlawack2012-12-101-1/+5
|\ \ \ | |/ /