| Commit message (Expand) | Author | Age | Files | Lines |
* | Reverting to previous version, which works. And I don't really care about | Jack Jansen | 2003-12-05 | 1 | -83/+0 |
|
|
* | distutils compilers now compile source files in the same order as they | Thomas Heller | 2003-12-05 | 1 | -0/+3 |
|
|
* | Compile the files in the same order they are passed to the compiler. | Thomas Heller | 2003-12-05 | 3 | -3/+15 |
|
|
* | - fix markup in the bool() description | Fred Drake | 2003-12-05 | 1 | -10/+9 |
|
|
* | Add news about removal of the PendingDeprecationWarning from apply(). | Fred Drake | 2003-12-05 | 1 | -0/+3 |
|
|
* | Remove the PendingDeprecationWarning from apply(). apply() will | Fred Drake | 2003-12-05 | 1 | -4/+0 |
|
|
* | Fix links and typos. | Raymond Hettinger | 2003-12-05 | 1 | -14/+22 |
|
|
* | Fix typo | Raymond Hettinger | 2003-12-05 | 1 | -4/+4 |
|
|
* | Fix typos. | Raymond Hettinger | 2003-12-04 | 1 | -2/+2 |
|
|
* | The Windows build number for 2.3.3c1 is 50. | Thomas Heller | 2003-12-04 | 1 | -0/+2 |
|
|
* | SF bug #849662. Dramatically, improve comparison speed for "if shl == None". | Raymond Hettinger | 2003-12-04 | 1 | -0/+2 |
|
|
* | Fix error in exception message. | Brett Cannon | 2003-12-04 | 1 | -1/+1 |
|
|
* | Remove extra copy of test_key_with_exception that somehow appeared | Michael W. Hudson | 2003-12-04 | 1 | -7/+0 |
|
|
* | Fixes and tests for various "holding pointers when arbitrary Python code | Michael W. Hudson | 2003-12-04 | 2 | -35/+91 |
|
|
* | Typo repair; added some comments and horizontal whitespace. | Tim Peters | 2003-12-04 | 1 | -9/+10 |
|
|
* | Ported to Universal Headers 3.4.2. Qd and Qt remain to be done. | Jack Jansen | 2003-12-03 | 18 | -225/+425 |
|
|
* | Adding an interface to the high-level Open Scripting Architecture, | Jack Jansen | 2003-12-03 | 6 | -0/+1595 |
|
|
* | Fix link | Raymond Hettinger | 2003-12-03 | 1 | -3/+2 |
|
|
* | Add a standard library tour | Raymond Hettinger | 2003-12-03 | 1 | -0/+318 |
|
|
* | Fix test_unicode_file errors on platforms without Unicode file support, | Mark Hammond | 2003-12-03 | 2 | -19/+27 |
|
|
* | Blacklisting LSInit and LSTerm, which are deprecated. Partial fix for 853558. | Jack Jansen | 2003-12-03 | 2 | -32/+2 |
|
|
* | Add parameters indent, width and depth to pprint.pprint() and pprint.pformat() | Walter Dörwald | 2003-12-03 | 4 | -10/+28 |
|
|
* | Patch #750542: pprint now will pretty print subclasses of list, tuple | Walter Dörwald | 2003-12-03 | 3 | -13/+55 |
|
|
* | Reduce the size of Big String and Big Binary tests to 2**14 (minus one | Guido van Rossum | 2003-12-03 | 1 | -2/+2 |
|
|
* | Fix typo. (From SF bug #853064) | Walter Dörwald | 2003-12-03 | 1 | -1/+1 |
|
|
* | Add test for bug "[ 846133 ] os.chmod/os.utime/shutil do not work with | Mark Hammond | 2003-12-03 | 2 | -78/+148 |
|
|
* | Add TESTFN_UNICODE_UNENCODEABLE, a unicode filename that can not be | Mark Hammond | 2003-12-03 | 1 | -0/+21 |
|
|
* | Fix [ 846133 ] os.chmod/os.utime/shutil do not work with unicode filenames | Mark Hammond | 2003-12-03 | 1 | -3/+50 |
|
|
* | An interface to the LaunchServices API. | Jack Jansen | 2003-12-02 | 5 | -0/+650 |
|
|
* | doc nit | Skip Montanaro | 2003-12-02 | 1 | -1/+2 |
|
|
* | OS/2+EMX: make the link() emulation available as os.link() | Andrew MacIntyre | 2003-12-02 | 1 | -0/+1 |
|
|
* | EMX lacks an implementation of link(). As Mailman wants os.link() to | Andrew MacIntyre | 2003-12-02 | 1 | -0/+79 |
|
|
* | To find the curses extension as a DLL (on OS/2), we need to adjust the | Andrew MacIntyre | 2003-12-02 | 1 | -0/+15 |
|
|
* | - add notes about os.link() emulation; | Andrew MacIntyre | 2003-12-02 | 1 | -82/+87 |
|
|
* | - add build support for curses extension to be a normal DLL as well as | Andrew MacIntyre | 2003-12-02 | 1 | -5/+12 |
|
|
* | use same compiler switches as core for extensions | Andrew MacIntyre | 2003-12-02 | 1 | -2/+2 |
|
|
* | SF patch #852140: keyword.py - use __contains__ and bool | Raymond Hettinger | 2003-12-02 | 1 | -5/+1 |
|
|
* | Convert a 0/1 to False/True. | Raymond Hettinger | 2003-12-02 | 1 | -2/+2 |
|
|
* | Py_Finalize(): disabled the second call of cyclic gc, and added extensive | Tim Peters | 2003-12-01 | 2 | -2/+37 |
|
|
* | Convert path objects to strings in askdirectory. Fixes #852314. | Martin v. Löwis | 2003-12-01 | 1 | -0/+6 |
|
|
* | Apply extract functions instead of lambda. | Raymond Hettinger | 2003-12-01 | 2 | -3/+4 |
|
|
* | Revert previous change. MAL preferred the old version. | Raymond Hettinger | 2003-12-01 | 1 | -4/+41 |
|
|
* | As discussed on python-dev, added two extractor functions to the | Raymond Hettinger | 2003-12-01 | 4 | -2/+302 |
|
|
* | Simplifed the code. | Raymond Hettinger | 2003-12-01 | 1 | -41/+4 |
|
|
* | Add testcases for _winreg segfault (SF 851056). | Guido van Rossum | 2003-11-30 | 1 | -1/+3 |
|
|
* | Add news item for _winreg fix (SF bug 851056). | Guido van Rossum | 2003-11-30 | 1 | -0/+5 |
|
|
* | Remove all uses of alloca() from this module. The alloca() return value | Guido van Rossum | 2003-11-30 | 1 | -16/+48 |
|
|
* | Fix a bug discovered by Kalle Svensson: comparing sys.maxint to | Guido van Rossum | 2003-11-29 | 1 | -1/+1 |
|
|
* | - Removed FutureWarnings related to hex/oct literals and conversions | Guido van Rossum | 2003-11-29 | 11 | -148/+120 |
|
|
* | Make sure the list.sort's decorate step unwinds itself before returning | Raymond Hettinger | 2003-11-28 | 2 | -2/+16 |
|
|