summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* Issue #16382: Improve exception message of warnings.warn() for bad category.Berker Peksag2014-07-111-0/+35
* Issue #21932: Ooops, os.read(fd, size) allocates a buffer of size bytes, evenVictor Stinner2014-07-111-2/+3
* Issue #21932: os.read() now uses a :c:func:`Py_ssize_t` type instead ofVictor Stinner2014-07-111-0/+19
* (Merge 3.4) asyncio: sync with TulipVictor Stinner2014-07-113-7/+6
|\
| * asyncio: sync with TulipVictor Stinner2014-07-113-7/+6
* | (Merge 3.4) asyncio: sync with TulipVictor Stinner2014-07-101-8/+3
|\ \ | |/
| * asyncio: sync with TulipVictor Stinner2014-07-101-8/+3
* | (Merge 3.4) asyncio: sync with TulipVictor Stinner2014-07-101-7/+42
|\ \ | |/
| * asyncio: sync with TulipVictor Stinner2014-07-101-7/+42
* | (Merge 3.4) asyncio: sync with TulipVictor Stinner2014-07-102-12/+60
|\ \ | |/
| * asyncio: sync with TulipVictor Stinner2014-07-102-12/+60
* | Issue #21942: Fixed source file viewing in pydoc's server mode on Windows.Zachary Ware2014-07-101-5/+2
|\ \ | |/
| * Issue #21942: Fixed source file viewing in pydoc's server mode on Windows.Zachary Ware2014-07-101-5/+2
* | Issue #6916: Use assertWarns in test_asynchat.Berker Peksag2014-07-091-6/+6
* | (Merge 3.4) asyncion, Tulip issue 181: BaseEventLoop.create_datagram_endpoint()Victor Stinner2014-07-081-0/+10
|\ \ | |/
| * asyncion, Tulip issue 181: BaseEventLoop.create_datagram_endpoint() now waitsVictor Stinner2014-07-081-0/+10
* | Merge 3.4Victor Stinner2014-07-084-2/+43
|\ \ | |/
| * asyncio: sync with TulipVictor Stinner2014-07-084-2/+43
* | (Merge 3.4) Issue #11259: asynchat.async_chat().set_terminator() now raises aVictor Stinner2014-07-071-0/+8
|\ \ | |/
| * Issue #11259: asynchat.async_chat().set_terminator() now raises a ValueError ifVictor Stinner2014-07-071-0/+8
* | (Merge 3.4) asynchat: PEP8-ify the codeVictor Stinner2014-07-071-13/+18
|\ \ | |/
| * asynchat: PEP8-ify the codeVictor Stinner2014-07-071-13/+18
* | (Merge 3.4) Issue #12523: asynchat.async_chat.push() now raises a TypeError ifVictor Stinner2014-07-071-0/+16
|\ \ | |/
| * Issue #12523: asynchat.async_chat.push() now raises a TypeError if it doesn'tVictor Stinner2014-07-071-0/+16
* | Issue #21707: Merge with 3.4.Berker Peksag2014-07-071-1/+1
|\ \ | |/
| * Issue #21707: Fix tests on Windows.Berker Peksag2014-07-071-1/+1
| * Merge headsSerhiy Storchaka2014-07-071-4/+12
| |\
* | \ Merge headsSerhiy Storchaka2014-07-071-4/+12
|\ \ \
| * \ \ Issue #21707: Merge with 3.4.Berker Peksag2014-07-071-4/+12
| |\ \ \ | | | |/ | | |/|
| | * | Issue #21707: Add missing kwonlyargcount argument to ModuleFinder.replace_pa...Berker Peksag2014-07-071-4/+12
* | | | Issue #21881: Just omit tests for platform-specific NaN representation in tes...Serhiy Storchaka2014-07-071-6/+2
|\ \ \ \ | |/ / / |/| | / | | |/ | |/|
| * | Issue #21881: Just omit tests for platform-specific NaN representation in tes...Serhiy Storchaka2014-07-071-6/+2
| |/
* | Issue #19593: Use specific asserts in importlib tests.Serhiy Storchaka2014-07-075-7/+7
|\ \ | |/
| * Issue #19593: Use specific asserts in importlib tests.Serhiy Storchaka2014-07-075-7/+7
| * Merge headsSerhiy Storchaka2014-07-074-0/+76
| |\
* | \ Issue #21881: Be more tolerant in test_tcl to not parsable by float() NaNSerhiy Storchaka2014-07-071-6/+6
|\ \ \ | |/ /
| * | Issue #21881: Be more tolerant in test_tcl to not parsable by float() NaNSerhiy Storchaka2014-07-071-6/+6
* | | for some reason, you don't get the right checksum from an incremental buildBenjamin Peterson2014-07-071-2/+3
* | | Merge pathlib fixesAntoine Pitrou2014-07-071-0/+14
|\ \ \ | | |/ | |/|
| * | Issue #20639: calling Path.with_suffix('') allows removing the suffix again.Antoine Pitrou2014-07-071-0/+6
| * | Issue #21714: Disallow the construction of invalid paths using Path.with_name...Antoine Pitrou2014-07-071-0/+8
* | | upgrade to unicode 7.0.0Benjamin Peterson2014-07-061-2/+2
* | | Issue #9554: Use modern unittest features in test_argparse.Berker Peksag2014-07-061-71/+31
* | | (Merge 3.4) Closes #21886, #21447: Fix a race condition in asyncio when settingVictor Stinner2014-07-052-0/+10
|\ \ \ | |/ /
| * | Closes #21886, #21447: Fix a race condition in asyncio when setting the resultVictor Stinner2014-07-052-0/+10
* | | Issue #21897: Fix a crash with the f_locals attribute with closure variables ...Antoine Pitrou2014-07-051-0/+52
|\ \ \ | |/ /
| * | Issue #21897: Fix a crash with the f_locals attribute with closure variables ...Antoine Pitrou2014-07-051-0/+52
| |/
* | #15014: Add 'auth' command to implement auth mechanisms and use it in login.R David Murray2014-07-031-22/+38
* | Closes #21151: Merge with 3.4Zachary Ware2014-07-031-1/+14
|\ \ | |/
| * Issue #21151: Fixed a segfault in the winreg module.Zachary Ware2014-07-031-1/+14