| Commit message (Expand) | Author | Age | Files | Lines |
* | Convert test_poll to unittest. | Georg Brandl | 2006-10-29 | 2 | -195/+140 |
|
|
* | Convert test_mmap to unittest. | Georg Brandl | 2006-10-29 | 2 | -276/+156 |
|
|
* | Bug #1576657: when setting a KeyError for a tuple key, make sure that | Georg Brandl | 2006-10-29 | 1 | -0/+10 |
|
|
* | Bug #1586773: extend hashlib docstring. | Georg Brandl | 2006-10-29 | 1 | -1/+30 |
|
|
* | Bug #1586613: fix zlib and bz2 codecs' incremental en/decoders. | Georg Brandl | 2006-10-29 | 3 | -8/+53 |
|
|
* | Fix the new EncodedFile test to work with big endian platforms. | Georg Brandl | 2006-10-29 | 1 | -2/+2 |
|
|
* | Test assert if __debug__ is true. | Georg Brandl | 2006-10-29 | 1 | -4/+3 |
|
|
* | Patch #1583880: fix tarfile's problems with long names and posix/ | Georg Brandl | 2006-10-29 | 1 | -88/+81 |
|
|
* | Bug #1357915: allow all sequence types for shell arguments in | Georg Brandl | 2006-10-29 | 1 | -0/+2 |
|
|
* | Remove trailing comma. | Georg Brandl | 2006-10-29 | 1 | -1/+1 |
|
|
* | Bug #1586448: the compiler module now emits the same bytecode for | Georg Brandl | 2006-10-29 | 1 | -7/+5 |
|
|
* | Fix codecs.EncodedFile which did not use file_encoding in 2.5.0, and | Georg Brandl | 2006-10-29 | 2 | -4/+58 |
|
|
* | Fix test_modulefinder so it doesn't fail when run after test_distutils. | Neal Norwitz | 2006-10-28 | 1 | -0/+1 |
|
|
* | Fix bug #1565514, SystemError not raised on too many nested blocks. | Neal Norwitz | 2006-10-28 | 1 | -0/+31 |
|
|
* | make test_grammar pass with python -O | Georg Brandl | 2006-10-28 | 1 | -2/+4 |
|
|
* | Convert test_opcodes to unittest. | Georg Brandl | 2006-10-28 | 2 | -105/+108 |
|
|
* | Convert test_math to unittest. | Georg Brandl | 2006-10-28 | 2 | -229/+207 |
|
|
* | Update outstanding bugs test file. | Georg Brandl | 2006-10-28 | 1 | -10/+5 |
|
|
* | Convert test_global, test_scope and test_grammar to unittest. | Georg Brandl | 2006-10-28 | 8 | -1288/+1263 |
|
|
* | Port test_bufio to unittest. | Walter Dörwald | 2006-10-28 | 1 | -55/+61 |
|
|
* | Modulefinder now handles absolute and relative imports, including | Thomas Heller | 2006-10-27 | 2 | -37/+372 |
|
|
* | WindowsError.str should display the windows error code, | Thomas Heller | 2006-10-27 | 1 | -0/+13 |
|
|
* | [Patch #1574068 by Scott Dial] urllib and urllib2 were using | Andrew M. Kuchling | 2006-10-27 | 2 | -6/+6 |
|
|
* | Clarify docstring | Andrew M. Kuchling | 2006-10-27 | 1 | -1/+1 |
|
|
* | [Bug #1575506] The _singlefileMailbox class was using the wrong file object i... | Andrew M. Kuchling | 2006-10-27 | 2 | -1/+17 |
|
|
* | [Bug #1576241] Let functools.wraps work with built-in functions | Andrew M. Kuchling | 2006-10-27 | 2 | -1/+8 |
|
|
* | Patch #1567274: Support SMTP over TLS. | Martin v. Löwis | 2006-10-27 | 1 | -5/+34 |
|
|
* | Patch #1549049: Rewrite type conversion in structmember. | Martin v. Löwis | 2006-10-27 | 1 | -0/+80 |
|
|
* | Typo fix | Andrew M. Kuchling | 2006-10-26 | 1 | -1/+1 |
|
|
* | Patch [ 1583506 ] tarfile.py: 100-char filenames are truncated | Georg Brandl | 2006-10-24 | 2 | -1/+28 |
|
|
* | Remove passwd.adjunct.byname from list of maps | Martin v. Löwis | 2006-10-22 | 1 | -0/+7 |
|
|
* | Port test___future__ to unittest. | Walter Dörwald | 2006-10-22 | 1 | -52/+56 |
|
|
* | Whitespace normalization. | Tim Peters | 2006-10-18 | 2 | -3/+3 |
|
|
* | ctypes callback functions only support 'fundamental' result types. | Thomas Heller | 2006-10-17 | 1 | -0/+13 |
|
|
* | Fix turtle so that you can launch the demo2 function on its own instead of only | Brett Cannon | 2006-10-16 | 1 | -1/+1 |
|
|
* | Round to int, because some systems support sub-second time stamps in stat, bu... | Martin v. Löwis | 2006-10-15 | 1 | -2/+4 |
|
|
* | Loosen the test for equal time stamps. | Martin v. Löwis | 2006-10-15 | 1 | -1/+1 |
|
|
* | Patch #1576166: Support os.utime for directories on Windows NT+. | Martin v. Löwis | 2006-10-15 | 1 | -0/+7 |
|
|
* | Update the peephole optimizer to remove more dead code (jumps after returns) | Neal Norwitz | 2006-10-14 | 1 | -0/+35 |
|
|
* | Bug #1560179: speed up posixpath.(dir|base)name | Georg Brandl | 2006-10-12 | 1 | -4/+9 |
|
|
* | Fix tarfile depending on buggy int('1\0', base) behavior. | Georg Brandl | 2006-10-12 | 1 | -1/+1 |
|
|
* | Bug #1545497: when given an explicit base, int() did ignore NULs | Georg Brandl | 2006-10-12 | 1 | -0/+5 |
|
|
* | Bug #1548891: The cStringIO.StringIO() constructor now encodes unicode | Georg Brandl | 2006-10-12 | 1 | -0/+22 |
|
|
* | Bug #1550524: better heuristics to find correct class definition | Georg Brandl | 2006-10-12 | 1 | -2/+17 |
|
|
* | Bug #813342: Start the IDLE subprocess with -Qnew if the parent | Georg Brandl | 2006-10-12 | 1 | -0/+2 |
|
|
* | Bug #1565150: Fix subsecond processing for os.utime on Windows. | Martin v. Löwis | 2006-10-09 | 1 | -0/+8 |
|
|
* | MacOSX: The universal build requires that users have the MacOSX10.4u SDK | Ronald Oussoren | 2006-10-08 | 1 | -0/+16 |
|
|
* | MacOSX: distutils changes the values of BASECFLAGS and LDFLAGS when using a | Ronald Oussoren | 2006-10-08 | 1 | -1/+4 |
|
|
* | Bug #1572832: fix a bug in ISO-2022 codecs which may cause segfault | Hye-Shik Chang | 2006-10-08 | 1 | -0/+10 |
|
|
* | A very minor bug fix: this code looks like it is designed to accept | Armin Rigo | 2006-10-06 | 1 | -1/+2 |
|
|