| Commit message (Expand) | Author | Age | Files | Lines |
* | More on SF bug [#460020] bug or feature: unicode() and subclasses. | Tim Peters | 2001-09-10 | 3 | -2/+7 |
|
|
* | test_dir(): Add tests for dir(i) where i is a module subclass. | Tim Peters | 2001-09-10 | 1 | -0/+23 |
|
|
* | Prototype for PyMac_GetFullPathname(). | Jack Jansen | 2001-09-10 | 1 | -0/+1 |
|
|
* | Replaced PyMac_FullPath by PyMac_FullPathname, which has an extra 'length' | Jack Jansen | 2001-09-10 | 6 | -35/+74 |
|
|
* | 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 | 3 | -2/+7 |
|
|
* | Superseded by Python 2.2.vct. | Jack Jansen | 2001-09-10 | 1 | -0/+0 |
|
|
* | SF bug #460020: bug or feature: unicode() and subclasses. | Tim Peters | 2001-09-10 | 6 | -3/+55 |
|
|
* | _portable_fseek(): | Guido van Rossum | 2001-09-10 | 1 | -0/+6 |
|
|
* | sync with pythonware codebase: much faster import (doesn't import | Fredrik Lundh | 2001-09-10 | 1 | -65/+70 |
|
|
* | Another volunteer. | Guido van Rossum | 2001-09-10 | 1 | -0/+1 |
|
|
* | PyObject_Dir(): | Guido van Rossum | 2001-09-10 | 1 | -2/+6 |
|
|
* | PyModule_Check() now checks for subtype of module, as it should. | Guido van Rossum | 2001-09-10 | 1 | -1/+1 |
|
|
* | Remove some XXX markers | Andrew M. Kuchling | 2001-09-10 | 1 | -15/+17 |
|
|
* | Use $(CC) -G to link shared libraries on Solaris. | Martin v. Löwis | 2001-09-10 | 2 | -4/+4 |
|
|
* | Work around a LaTeX2HTML bug that caused the "m" in "mutable" to be dropped | Fred Drake | 2001-09-10 | 1 | -1/+1 |
|
|
* | 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 |
|
|
* | Improve threading on Solaris, according to SF patch #460269, submitted | Guido van Rossum | 2001-09-10 | 5 | -224/+324 |
|
|
* | Change the criteria for skipping the test. | Guido van Rossum | 2001-09-10 | 1 | -19/+22 |
|
|
* | Removed an erronous comment about alias files. | Jack Jansen | 2001-09-10 | 1 | -3/+0 |
|
|
* | Add section on long integer changes | Andrew M. Kuchling | 2001-09-10 | 1 | -18/+69 |
|
|
* | Add a few more todo items. | Guido van Rossum | 2001-09-10 | 1 | -1/+12 |
|
|
* | Test the failed-unicode-decoding bug in PyArg_ParseTuple(). | Jeremy Hylton | 2001-09-10 | 1 | -0/+24 |
|
|
* | Fix core dump in PyArg_ParseTuple() with Unicode arguments. | Jeremy Hylton | 2001-09-10 | 1 | -15/+17 |
|
|
* | Repair late-night doc typos. | Tim Peters | 2001-09-10 | 2 | -3/+3 |
|
|
* | This time (I hope) I've fixed largefile | Guido van Rossum | 2001-09-09 | 4 | -420/+327 |
|
|
* | 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 |
|
|
* | Install the dialog resources into the application bundle. The EasyDialogs | Jack Jansen | 2001-09-09 | 1 | -1/+7 |
|
|
* | Don't call MacOS.SchedParams() in MachO, it doesn't exist. | Jack Jansen | 2001-09-09 | 1 | -4/+8 |
|
|
* | Minimal module to decode AppleSingle files (the way resource files are | Jack Jansen | 2001-09-09 | 1 | -0/+101 |
|
|
* | This commit was manufactured by cvs2svn to create tag 'r22a3'.v2.2a3 | cvs2svn | 2001-09-08 | 1 | -0/+1 |
|
|
* | Final tweaks for 2.2a3 distribution. | Jack Jansen | 2001-09-08 | 13 | -60/+104 |
|
|
* | Silence warnings about passing unsigned char** as char**. | Martin v. Löwis | 2001-09-08 | 1 | -4/+4 |
|
|
* | Oops, this file is very outdated. Removed. | Jack Jansen | 2001-09-08 | 1 | -116/+0 |
|
|
* | Generalize operator.indexOf (PySequence_Index) to work with any | Tim Peters | 2001-09-08 | 6 | -82/+128 |
|
|
* | It appears that unittest was changed to stop hoarding raw exception data, | Tim Peters | 2001-09-08 | 1 | -4/+1 |
|
|
* | The usual post-release fiddling. | Tim Peters | 2001-09-08 | 2 | -4/+24 |
|
|
* | PyClass_New(): put the extended Don Beaudry hook back in. When one of | Guido van Rossum | 2001-09-07 | 1 | -4/+14 |
|
|
* | PySequence_Check(), PyMapping_Check(): only return true if the | Guido van Rossum | 2001-09-07 | 1 | -2/+4 |
|
|
* | PyType_IsSubtype(): test tp_flags for HAVE_CLASS bit before accessing | Guido van Rossum | 2001-09-07 | 1 | -0/+3 |
|
|
* | Bumping version numbers. | Barry Warsaw | 2001-09-07 | 1 | -2/+2 |
|
|
* | Merging in removal of this file from branch to trunk. | Barry Warsaw | 2001-09-07 | 1 | -163/+0 |
|
|
* | Merging 2.2a3 branch changes back into trunk | Barry Warsaw | 2001-09-07 | 1 | -8/+18 |
|
|
* | Patch #438790: Add additional mappings. | Martin v. Löwis | 2001-09-07 | 1 | -3/+36 |
|
|
* | Patch #450702: allow threads when calling into zlib, protect usage of | Martin v. Löwis | 2001-09-07 | 1 | -114/+350 |
|
|
* | Fix compiler warnings. This closes some of the #458880 problem. | Martin v. Löwis | 2001-09-07 | 1 | -9/+8 |
|
|
* | (Slightly modified) patch by Steve Spicklemire to make Python build | Jack Jansen | 2001-09-07 | 2 | -250/+286 |
|
|
* | Fix bug #410274 - sys.prefix isn't always set. | Mark Hammond | 2001-09-07 | 1 | -1/+35 |
|
|