index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
test
Commit message (
Expand
)
Author
Age
Files
Lines
*
Added a 'create_connect()' function to socket.py, which creates a
Facundo Batista
2007-03-23
2
-3/+124
*
Add test and fix for fromkeys() optional argument.
Raymond Hettinger
2007-03-21
1
-0/+3
*
Bug #1675967: re patterns pickled with older Python versions can
Žiga Seilnacht
2007-03-21
1
-1/+7
*
New test for rev. 54407 which only uses directories under TESTFN.
Georg Brandl
2007-03-21
1
-19/+47
*
Patch #1682205: a TypeError while unpacking an iterable is no longer
Georg Brandl
2007-03-21
1
-1/+1
*
Extend work on rev 52962 and 53829 eliminating redundant PyObject_Hash() call...
Raymond Hettinger
2007-03-20
1
-0/+4
*
Try to be a little more resilient to errors. This might help the test
Neal Norwitz
2007-03-20
1
-2/+2
*
Try to make this test more resistant to dropping from previous runs (ie, file...
Neal Norwitz
2007-03-20
1
-0/+1
*
Try to make this test more resistant to dropping from previous runs (ie, file...
Neal Norwitz
2007-03-20
1
-0/+3
*
Try backing out 54407 to see if it corrects the problems on the Windows
Neal Norwitz
2007-03-20
1
-34/+6
*
Get rid of deprecation warning when testing commands.getstatus()
Neal Norwitz
2007-03-20
1
-0/+4
*
Patch #1630118: add a SpooledTemporaryFile class to tempfile.
Collin Winter
2007-03-19
1
-1/+103
*
Patch #1678339: test case for bug in difflib.
Georg Brandl
2007-03-18
1
-3/+34
*
Patch #1675423: PyComplex_AsCComplex() now tries to convert an object
Georg Brandl
2007-03-17
1
-51/+195
*
Patch 1339796: add a relpath() function to os.path.
Collin Winter
2007-03-16
2
-1/+22
*
Remove test/output/test_popen2 (missed in r54417).
Collin Winter
2007-03-16
1
-9/+0
*
Patch #1676994: Refactor test_popen2 to use unittest.
Collin Winter
2007-03-16
1
-68/+82
*
Patch #1623563: allow __class__ assignment for classes with __slots__.
Žiga Seilnacht
2007-03-16
1
-0/+45
*
Patch #1273829: os.walk() now has a "followlinks" parameter. If set to
Georg Brandl
2007-03-16
1
-6/+34
*
Patch #1642547: Fix an error/crash when encountering syntax errors in complex...
Collin Winter
2007-03-16
1
-0/+50
*
Patch #1462488: prevent a segfault in object_reduce_ex() by splitting
Žiga Seilnacht
2007-03-15
1
-0/+32
*
Raise ResourceDenied in test_urllib2net when the Net connection goes bad.
Brett Cannon
2007-03-14
1
-1/+2
*
Patch #1559413: Fix test_cmd_line if sys.executable contains a space.
Martin v. Löwis
2007-03-14
1
-1/+1
*
Patch #1680015: Don't modify __slots__ tuple if it contains an unicode
Žiga Seilnacht
2007-03-14
1
-0/+23
*
Bug #767111: fix long-standing bug in urllib which caused an
Georg Brandl
2007-03-14
1
-0/+9
*
Patch #1185447: binascii.b2a_qp() now correctly quotes binary characters
Georg Brandl
2007-03-13
1
-0/+9
*
Patch #957650: "%var%" environment variable references are now properly
Georg Brandl
2007-03-13
1
-0/+7
*
Patch #1444529: the builtin compile() now accepts keyword arguments.
Georg Brandl
2007-03-13
1
-0/+9
*
Fix a tab.
Georg Brandl
2007-03-13
1
-2/+2
*
Patch #1537850: tempfile.NamedTemporaryFile now has a "delete" parameter
Georg Brandl
2007-03-13
1
-2/+19
*
Patch #1581073: add a flag to textwrap that prevents the dropping of
Georg Brandl
2007-03-13
1
-0/+8
*
Patch #1603688: ConfigParser.SafeConfigParser now checks values that
Georg Brandl
2007-03-13
1
-0/+12
*
Quick fix for tests that fail on systems with an encoding other
Lars Gustäbel
2007-03-13
1
-6/+7
*
This is the implementation of POSIX.1-2001 (pax) format read/write
Lars Gustäbel
2007-03-13
2
-581/+761
*
Patch #1668100: urllib2 now correctly raises URLError instead of
Georg Brandl
2007-03-13
1
-5/+5
*
Fix a typo where the variable name was not updated.
Brett Cannon
2007-03-13
1
-1/+1
*
Add test.test_support.transient_internet . Returns a context manager that
Brett Cannon
2007-03-13
2
-3/+14
*
Whitespace normalization.
Tim Peters
2007-03-12
12
-502/+502
*
Patch #1670993: Refactor test_threadedtempfile.py to use unittest.
Collin Winter
2007-03-12
2
-46/+34
*
Bug #742342: make Python stop segfaulting on infinitely-recursive reload()s. ...
Collin Winter
2007-03-12
2
-0/+17
*
Patch #1678088: convert test_operations to use unittest, fold the result into...
Collin Winter
2007-03-12
4
-100/+72
*
Backport from Py3k branch:
Georg Brandl
2007-03-12
1
-4/+59
*
Sane humans would call these invalid tests, but Andrew McNamara pointed out
Skip Montanaro
2007-03-12
1
-0/+4
*
Fix resource leak reported in SF #1516995.
Vinay Sajip
2007-03-11
1
-0/+2
*
Convert an assert to a raise so it works even in the presence of -O.
Collin Winter
2007-03-10
1
-2/+4
*
Bug #1531963: Make SocketServer.TCPServer's server_address always be equal to...
Collin Winter
2007-03-10
1
-0/+1
*
* Unlink test files before and after each test; hopefully this will cut down ...
Collin Winter
2007-03-10
1
-105/+62
*
Patch #1491866: change the complex() constructor to allow parthensized forms....
Collin Winter
2007-03-09
1
-0/+12
*
Introduce test.test_support.TransientResource. It's a context manager to
Brett Cannon
2007-03-08
2
-1/+27
*
Backported r54226 from p3yk: Move test_unittest, test_doctest and test_doctes...
Collin Winter
2007-03-08
1
-0/+3
[next]