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
Commit message (
Expand
)
Author
Age
Files
Lines
*
Update test to accomodate the change to the namespace_separator parameter
Fred Drake
2001-04-25
2
-10/+32
*
SF bug 418615: regular expression bug in pipes.py.
Tim Peters
2001-04-25
1
-4/+4
*
Fix typo in docstring
Andrew M. Kuchling
2001-04-23
1
-1/+1
*
Bump version # for final release
Andrew M. Kuchling
2001-04-23
1
-1/+1
*
Add test suite for iterators.
Guido van Rossum
2001-04-21
2
-0/+247
*
Give UserDict new __contains__ and __iter__ methods.
Tim Peters
2001-04-21
2
-1/+19
*
Iterators phase 1. This comprises:
Guido van Rossum
2001-04-20
1
-0/+2
*
dispatcher.__repr__() was unprepared to handle the address for a Unix
Jeremy Hylton
2001-04-20
1
-11/+16
*
Implement, test and document "key in dict" and "key not in dict".
Guido van Rossum
2001-04-20
1
-0/+4
*
Weak*Dictionary: Added docstrings to the classes.
Fred Drake
2001-04-19
1
-24/+36
*
Fix compileall.py so that it fails on SyntaxErrors
Jeremy Hylton
2001-04-18
1
-8/+26
*
Fix compileall.py so that it fails on SyntaxErrors
Jeremy Hylton
2001-04-18
10
-16/+11
*
Unused variable (caught by PyChecker) removed.
Eric S. Raymond
2001-04-17
1
-1/+0
*
Fix three PyChecker-detected gotchas.
Jeremy Hylton
2001-04-16
1
-4/+10
*
In walk(), don't die when os.lstat() raises os.error, e.g. because a
Guido van Rossum
2001-04-16
1
-1/+4
*
Add a test case for Weak*Dictionary.update() that would have caught a
Fred Drake
2001-04-16
1
-0/+25
*
Weak*Dictionary.update(): Fix calls to [].append() to only have one
Fred Drake
2001-04-16
1
-4/+15
*
Implement Mark Favas's suggestion. There's a clear bug in _group():
Guido van Rossum
2001-04-16
1
-1/+1
*
Change the test data to ask for class C from module __main__ rather
Guido van Rossum
2001-04-16
1
-2/+3
*
Fix SF bug [ #416231 ] urllib.basejoin fails to apply some ../.
Guido van Rossum
2001-04-15
1
-0/+2
*
Get rid of the seek() method on the _Mailbox class. This was a
Guido van Rossum
2001-04-15
1
-8/+0
*
In order to make this test work on Windows, the test locale has to be
Guido van Rossum
2001-04-15
1
-2/+7
*
Fix typo (missing "req." prefix on error_302_dict) found by Neil
Guido van Rossum
2001-04-15
1
-1/+2
*
Fix typo in exception name (UnimplementedError should be
Guido van Rossum
2001-04-15
1
-2/+2
*
Fix typo in exception name (SGMLParserError should be SGMLParseError)
Guido van Rossum
2001-04-15
1
-1/+1
*
Fix typo in attribute name (file should be filename) found by
Guido van Rossum
2001-04-15
1
-1/+1
*
Fix typo in attribute name (chunk_size should be chunksize) found by
Guido van Rossum
2001-04-15
1
-1/+1
*
- Typo in message for TestCase.failIfEqual()
Steve Purcell
2001-04-15
1
-2/+1
*
Set the SO_REUSEADDR socket option in the server thread -- this seems
Guido van Rossum
2001-04-15
1
-0/+1
*
Mark Favas points out that there's an 'self.fp.flush()' call in the
Guido van Rossum
2001-04-14
1
-1/+1
*
Pete Shinners discovered that zipfile.ZipFile() is called with mode
Guido van Rossum
2001-04-14
1
-1/+1
*
Should resolve [ #416039 ] pstats browser crashes.
Eric S. Raymond
2001-04-14
1
-3/+3
*
Add "import thread" at the top of the module; this prevents us from
Guido van Rossum
2001-04-14
2
-0/+2
*
If the sunaudiodev module is available but we cannot find an audio
Fred Drake
2001-04-14
1
-1/+9
*
Import readline when possible to make the commaninterpreter UI nicer.
Eric S. Raymond
2001-04-14
1
-0/+4
*
Added regression test for SF bug #415660 (failure to invalidate all
Fred Drake
2001-04-13
1
-5/+24
*
Fix typo in comment (the module is now called _testcapi, not _test).
Guido van Rossum
2001-04-13
1
-1/+1
*
Change error message raised when free variable is not yet bound. It
Jeremy Hylton
2001-04-13
1
-1/+2
*
One-character style change to appease Netscape stylesheets.
Ka-Ping Yee
2001-04-13
1
-1/+1
*
Use nturl2path to generate a file: URL to source files in Windows.
Ka-Ping Yee
2001-04-13
1
-3/+7
*
Add test for SF bug #405427
Jeremy Hylton
2001-04-13
2
-0/+36
*
SF patch #405845 by Martin von Löwis
Jeremy Hylton
2001-04-13
1
-1/+7
*
Update to reflect new tokenize_test.py
Jeremy Hylton
2001-04-13
1
-8/+8
*
There's no need for the tokenize tests to include a SyntaxError.
Jeremy Hylton
2001-04-13
1
-1/+1
*
Clean up isroutine().
Ka-Ping Yee
2001-04-13
1
-2/+1
*
Use inspect.stack()[1][3] to tell if Helper.__repr__ is called interactively.
Ka-Ping Yee
2001-04-13
1
-2/+2
*
Add inode checks to detect circular symbolic links (so that the
Ka-Ping Yee
2001-04-13
1
-3/+7
*
Small style change to accommodate Netscape.
Ka-Ping Yee
2001-04-13
1
-1/+1
*
Robustify getfile() against classes that lie about their __module__s
Ka-Ping Yee
2001-04-13
1
-1/+1
*
Word-wrap the list of cross-references.
Ka-Ping Yee
2001-04-13
1
-1/+5
[next]