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
*
Possibly the end of SF [#460020] bug or feature: unicode() and subclasses.
Tim Peters
2001-09-11
1
-2/+2
*
Added another test of str() applied to a string subclass instance,
Tim Peters
2001-09-11
1
-0/+4
*
More on SF bug [#460020] bug or feature: unicode() and subclasses.
Tim Peters
2001-09-11
1
-1/+1
*
More on SF bug [#460020] bug or feature: unicode() and subclasses.
Tim Peters
2001-09-10
1
-1/+1
*
test_dir(): Add tests for dir(i) where i is a module subclass.
Tim Peters
2001-09-10
1
-0/+23
*
more xmlrpclib tweaks: fixed repr(Fault()); enable UTF-8 parsing in
Fredrik Lundh
2001-09-10
1
-12/+17
*
More for SF bug [#460020] bug or feature: unicode() and subclasses
Tim Peters
2001-09-10
1
-1/+1
*
SF bug #460020: bug or feature: unicode() and subclasses.
Tim Peters
2001-09-10
1
-0/+21
*
sync with pythonware codebase: much faster import (doesn't import
Fredrik Lundh
2001-09-10
1
-65/+70
*
Remove two XXX comments that have been resolved.
Guido van Rossum
2001-09-10
1
-2/+0
*
Move the global variables 'size' and 'name' to the top -- these are
Guido van Rossum
2001-09-10
1
-5/+5
*
Change the criteria for skipping the test.
Guido van Rossum
2001-09-10
1
-19/+22
*
Test the failed-unicode-decoding bug in PyArg_ParseTuple().
Jeremy Hylton
2001-09-10
1
-0/+24
*
Repair late-night doc typos.
Tim Peters
2001-09-10
2
-3/+3
*
Teach regrtest how to pass on doctest failure msgs. This is done via a
Tim Peters
2001-09-09
8
-27/+95
*
Force "test." into the start of the module name, inherited by class and
Tim Peters
2001-09-09
1
-17/+11
*
Generalize operator.indexOf (PySequence_Index) to work with any
Tim Peters
2001-09-08
1
-0/+41
*
It appears that unittest was changed to stop hoarding raw exception data,
Tim Peters
2001-09-08
1
-4/+1
*
Merging in removal of this file from branch to trunk.
Barry Warsaw
2001-09-07
1
-163/+0
*
Patch #438790: Add additional mappings.
Martin v. Löwis
2001-09-07
1
-3/+36
*
Fix typo in error reporting. This doesn't need to go into the release
Tim Peters
2001-09-07
1
-1/+1
*
Reverting to rev 1.2. Apparently gcc doesn't use the extended-precision
Tim Peters
2001-09-06
1
-3/+16
*
Rewrite to use test_support's fine fcmp instead -- I didn't know that
Tim Peters
2001-09-06
1
-16/+3
*
Added some underflow-to-0.0 long/long true division tests.
Tim Peters
2001-09-06
1
-0/+6
*
Rename 'getset' to 'property'.
Guido van Rossum
2001-09-06
3
-19/+19
*
Add missing period in docstring.
Fred Drake
2001-09-06
1
-1/+1
*
Two small changes to the resource usage option:
Guido van Rossum
2001-09-06
2
-4/+5
*
Added tests for key deletion for both Weak*Dictionary flavors.
Fred Drake
2001-09-06
1
-0/+22
*
Add __delitem__() support for WeakKeyDictionary.
Fred Drake
2001-09-06
1
-0/+7
*
Skip instead of fail this test if the socket module has no ssl
Guido van Rossum
2001-09-06
1
-0/+3
*
Patch #416079: fix the debug string output when receiving telnet commands.
Martin v. Löwis
2001-09-06
1
-5/+82
*
Changed TestResult to store only the text representation of an error.
Steve Purcell
2001-09-06
1
-10/+15
*
Dubious assumptions:
Tim Peters
2001-09-06
1
-5/+10
*
Enable large file support on Win32 systems.
Tim Peters
2001-09-06
1
-4/+4
*
Rework the way we try to check for libm overflow, given that C99 no longer
Tim Peters
2001-09-05
1
-1/+1
*
LongReprTest fails on the Mac because it uses filenames with more than
Jack Jansen
2001-09-05
1
-1/+2
*
Class FieldStorage: add two new methods, getfirst() and getlist(),
Guido van Rossum
2001-09-05
1
-0/+22
*
class Listbox: add itemcget, to satisfy SF patch #457713.
Guido van Rossum
2001-09-05
1
-1/+5
*
[ #458701 ] Patch to zipfile.py for Java
Finn Bock
2001-09-05
1
-5/+9
*
Remove a debug print left in the code by Fred.
Guido van Rossum
2001-09-05
1
-1/+0
*
Patch #449815: Set filesystemencoding based on CODESET.
Martin v. Löwis
2001-09-05
1
-1/+15
*
Patch #453627: Adds a list of tests that are expected to be skipped for UnixW...
Martin v. Löwis
2001-09-05
1
-0/+24
*
Patch #428326: New class threading.Timer.
Martin v. Löwis
2001-09-05
1
-1/+30
*
Implement PEP250: Use Lib/site-packages under windows.
Thomas Heller
2001-09-05
1
-311/+306
*
[Bug #404274] Restore some special-case code for AIX and BeOS under 1.5.2.
Andrew M. Kuchling
2001-09-05
1
-1/+28
*
Another / that should be a // (previously not caught because of
Guido van Rossum
2001-09-05
1
-1/+1
*
Add a test for the final branch in repr.Repr.repr1(), which deals with
Guido van Rossum
2001-09-05
1
-0/+5
*
Return reasonable results for math.log(long) and math.log10(long) (we were
Tim Peters
2001-09-05
1
-3/+37
*
[Bug #444589] Record empty directories in the install_data command
Andrew M. Kuchling
2001-09-04
1
-4/+12
*
[Bug #436732] install.py does not record a created *.pth file in the
Andrew M. Kuchling
2001-09-04
1
-2/+5
[next]