| Commit message (Expand) | Author | Age | Files | Lines |
* | Improve Windows time.clock() blurb; was missing return type and unit. | Tim Peters | 2001-08-19 | 1 | -4/+4 |
|
|
* | Windows fiddling for 2.2a2: bump build number; update copyright and | Tim Peters | 2001-08-19 | 4 | -8/+10 |
|
|
* | SF patch #452239 by Gordon McMillan, to fix SF bug #451547. | Guido van Rossum | 2001-08-18 | 1 | -1/+25 |
|
|
* | Add dependencies for Python/thread.c on all of the header files that | Guido van Rossum | 2001-08-18 | 1 | -0/+4 |
|
|
* | Inspired by Greg Stein's proposed simplification of the _closesocket | Guido van Rossum | 2001-08-18 | 1 | -5/+1 |
|
|
* | Expose the CO_xxx flags via the "new" module (re-solving a problem "the | Tim Peters | 2001-08-18 | 3 | -13/+48 |
|
|
* | added warnings about security risk of using tmpnam and tempnam | Skip Montanaro | 2001-08-18 | 1 | -0/+10 |
|
|
* | Fix SF bug #443600: | Guido van Rossum | 2001-08-18 | 1 | -15/+46 |
|
|
* | Framework code for compilerlike scripts. | Eric S. Raymond | 2001-08-18 | 2 | -0/+241 |
|
|
* | Resolve patch #449367. | Greg Stein | 2001-08-18 | 1 | -15/+26 |
|
|
* | Add some fairly important file extensions: bmp css doc mid midi mp2 mp3 xls. | Ka-Ping Yee | 2001-08-18 | 1 | -0/+8 |
|
|
* | Initial check-in of cgitb. | Ka-Ping Yee | 2001-08-18 | 1 | -0/+182 |
|
|
* | When the socket is closed, don't just assign 0 to self._sock. | Guido van Rossum | 2001-08-18 | 1 | -8/+18 |
|
|
* | Add a little introductory text. | Jeremy Hylton | 2001-08-18 | 1 | -15/+93 |
|
|
* | Generate correct reprs for Mul, Add, etc. | Jeremy Hylton | 2001-08-18 | 4 | -40/+20 |
|
|
* | Track removal of doc string from Module().nodes[0] | Jeremy Hylton | 2001-08-18 | 2 | -14/+4 |
|
|
* | Add Yield() node | Jeremy Hylton | 2001-08-18 | 2 | -0/+24 |
|
|
* | Remove the horrid generators hack from doctest.py. This relies on a | Tim Peters | 2001-08-18 | 1 | -75/+37 |
|
|
* | Add Yield() statement handler | Jeremy Hylton | 2001-08-18 | 2 | -2/+22 |
|
|
* | Fix for bug [#452230] future division isn't propagated. | Tim Peters | 2001-08-17 | 2 | -1/+9 |
|
|
* | The OSX framework Headers symlink pointed the wrong way. Fixed. | Jack Jansen | 2001-08-17 | 1 | -1/+1 |
|
|
* | A fiddled version of the rest of Michael Hudson's SF patch | Tim Peters | 2001-08-17 | 4 | -47/+157 |
|
|
* | Use raw-unicode-escape for the tests that require it. | Martin v. Löwis | 2001-08-17 | 2 | -3/+3 |
|
|
* | Address SF bug #442813. The sequence getitem wrappers should do | Guido van Rossum | 2001-08-17 | 1 | -8/+50 |
|
|
* | Add test for weak references. | Guido van Rossum | 2001-08-17 | 1 | -3/+33 |
|
|
* | Add note on type/class unification. | Guido van Rossum | 2001-08-17 | 1 | -0/+6 |
|
|
* | ceval, PyEval_MergeCompilerFlags: wasn't merging in the | Tim Peters | 2001-08-17 | 2 | -6/+5 |
|
|
* | Weak reference support, closing SF bug #451773. | Guido van Rossum | 2001-08-17 | 1 | -21/+51 |
|
|
* | Document that uu.decode() will always raise a uu.Error if out_file | Barry Warsaw | 2001-08-17 | 1 | -9/+18 |
|
|
* | Test that uu.py will not override an existing file if out_file isn't | Barry Warsaw | 2001-08-17 | 1 | -0/+34 |
|
|
* | decode(): Raise a uu.Error if no out_file is given but the file | Barry Warsaw | 2001-08-17 | 1 | -9/+13 |
|
|
* | A self-contained piece of Michael Hudson's patch | Tim Peters | 2001-08-17 | 2 | -8/+46 |
|
|
* | Address SF #451547. The approach is a bit draconian: any object that | Guido van Rossum | 2001-08-17 | 1 | -0/+14 |
|
|
* | Patch #445762: Support --disable-unicode | Martin v. Löwis | 2001-08-17 | 42 | -185/+465 |
|
|
* | Another contributor's patch got accepted. | Guido van Rossum | 2001-08-17 | 1 | -0/+1 |
|
|
* | Change the 227 response parser to use a more liberal regular | Guido van Rossum | 2001-08-17 | 1 | -7/+9 |
|
|
* | Make sure that ampersand escaping is still performed on the contents of | Fred Drake | 2001-08-17 | 1 | -0/+2 |
|
|
* | type_new(): look for __dynamic__ at the module level (after looking in | Guido van Rossum | 2001-08-17 | 1 | -14/+54 |
|
|
* | Strip trailing whitespace, including two lines containing only one or | Guido van Rossum | 2001-08-17 | 1 | -11/+11 |
|
|
* | - Get rid of obsolete #define PATCHLEVEL. | Guido van Rossum | 2001-08-17 | 1 | -4/+1 |
|
|
* | Fix core dump in repr() of instancemethod whose class==NULL. | Guido van Rossum | 2001-08-17 | 1 | -7/+11 |
|
|
* | classic(),metods(): add tests to verify that a bound method without a | Guido van Rossum | 2001-08-17 | 1 | -0/+2 |
|
|
* | instance_getattr2(): rewritten to remove unnecessary stuff and | Guido van Rossum | 2001-08-17 | 1 | -24/+13 |
|
|
* | classic(), methods(): add another test relating to unbound methods: | Guido van Rossum | 2001-08-17 | 1 | -0/+6 |
|
|
* | Instance methods: allow a NULL value for im_class. | Guido van Rossum | 2001-08-17 | 1 | -2/+2 |
|
|
* | Add early binding of methods to the 2nd metaclass example. | Guido van Rossum | 2001-08-17 | 1 | -1/+6 |
|
|
* | metaclass(): add tests for metaclasses written in Python: one that | Guido van Rossum | 2001-08-17 | 1 | -0/+33 |
|
|
* | type_new(): only defer to the winning metatype if it's different from | Guido van Rossum | 2001-08-17 | 1 | -8/+12 |
|
|
* | Stop adding 3 to FD_SETSIZE -- it makes no sense. If it turns out it | Tim Peters | 2001-08-16 | 1 | -15/+11 |
|
|
* | fix_font(): Instead of using a long if/elsif cluster, use a bloody | Fred Drake | 2001-08-16 | 1 | -23/+16 |
|
|