| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix for #641455: curses module doesn't build on MacOSX. It turns out the | Jack Jansen | 2002-11-22 | 1 | -0/+9 |
|
|
* | Comment out the warnings about mktemp(). These are too annoying, and | Guido van Rossum | 2002-11-22 | 1 | -3/+3 |
|
|
* | Added the alias manager too. The interface isn't perfect yet: the alias | Jack Jansen | 2002-11-22 | 6 | -0/+872 |
|
|
* | Got angry and added support for pretty much the whole file and folder | Jack Jansen | 2002-11-22 | 11 | -0/+2761 |
|
|
* | Clarify the default setting for daemon_threads. | Fred Drake | 2002-11-22 | 1 | -1/+3 |
|
|
* | Fix markup. | Fred Drake | 2002-11-22 | 1 | -1/+1 |
|
|
* | Use False instead of 0. | Fred Drake | 2002-11-22 | 1 | -1/+1 |
|
|
* | workaround so the (otherwise still broken) IDE can at least quit in the Pytho... | Just van Rossum | 2002-11-22 | 1 | -15/+14 |
|
|
* | fix for SF #635398 (don't "downcast" return strings from unicode to ascii) | Fredrik Lundh | 2002-11-22 | 1 | -21/+4 |
|
|
* | changed to use Lib/bundlebuilder.py instead of scripts/buildappbundle.py | Just van Rossum | 2002-11-22 | 1 | -5/+8 |
|
|
* | make the --link option match the original: just symlink the executable | Just van Rossum | 2002-11-22 | 1 | -2/+2 |
|
|
* | Added --link-exec option: make a symlink for the executable only, copy all ot... | Just van Rossum | 2002-11-22 | 1 | -4/+20 |
|
|
* | Replaced the bundle building code with calls to the new bundlebuilder | Just van Rossum | 2002-11-22 | 1 | -133/+75 |
|
|
* | Patch #542562, file 25252: Remove changelog. | Martin v. Löwis | 2002-11-22 | 1 | -38/+0 |
|
|
* | Patch #494845: Support string concatenation, detect non-string data, | Martin v. Löwis | 2002-11-22 | 3 | -37/+167 |
|
|
* | Patch #486438: Make module argument to testmod optional. | Martin v. Löwis | 2002-11-22 | 3 | -5/+20 |
|
|
* | Patch #550765: Add daemon_threads flag. | Martin v. Löwis | 2002-11-22 | 3 | -1/+22 |
|
|
* | added new IMAP4_stream class; added proxyauth command; added login_cram_md5 m... | Piers Lauder | 2002-11-22 | 1 | -12/+109 |
|
|
* | added details of new IMAP4_stream class; emphasised meaning of data part of c... | Piers Lauder | 2002-11-22 | 1 | -7/+29 |
|
|
* | fixed error in cmd line doc; moved funny self.name line once more | Just van Rossum | 2002-11-22 | 1 | -2/+3 |
|
|
* | fixed stupid bug | Just van Rossum | 2002-11-22 | 1 | -1/+1 |
|
|
* | Implement dict() style constructor. | Raymond Hettinger | 2002-11-22 | 2 | -3/+11 |
|
|
* | Properly compute array size even for --disable-unicode. | Martin v. Löwis | 2002-11-21 | 1 | -1/+1 |
|
|
* | Fix --disable-unicode compilation problems. | Martin v. Löwis | 2002-11-21 | 2 | -0/+9 |
|
|
* | added command line interface; refactored a bit; little things. | Just van Rossum | 2002-11-21 | 1 | -82/+179 |
|
|
* | float_int(): Some systems raise an exception if a double is cast to | Tim Peters | 2002-11-21 | 1 | -14/+16 |
|
|
* | Patch #633547: Support plural forms. Do TODOs in test suite. | Martin v. Löwis | 2002-11-21 | 6 | -163/+431 |
|
|
* | The _Event class should be more careful with releasing its lock when | Guido van Rossum | 2002-11-21 | 1 | -8/+14 |
|
|
* | Patch #639371: Remove FreeBSD 5 specific test, test for ctermid_r, setgroups | Martin v. Löwis | 2002-11-21 | 3 | -17/+142 |
|
|
* | Reflow comment | Andrew M. Kuchling | 2002-11-21 | 1 | -3/+3 |
|
|
* | Patch #642019: Recognize gcc-x.y as gcc. | Martin v. Löwis | 2002-11-21 | 1 | -1/+1 |
|
|
* | Patch #642020: Pass down prefix, BINDIR, and DESTSHARED to idleinstall. | Martin v. Löwis | 2002-11-21 | 1 | -1/+6 |
|
|
* | Wrap uargs declaration in a #ifdef Py_USING_UNICODE, so that | Walter Dörwald | 2002-11-21 | 1 | -0/+2 |
|
|
* | Comment out the getcwdu implementation for --disable-unicode builds | Walter Dörwald | 2002-11-21 | 1 | -0/+4 |
|
|
* | Move three variables that are only used inside an if block into the block, | Walter Dörwald | 2002-11-21 | 1 | -3/+3 |
|
|
* | Fix PEP 293 related problems with --disable-unicode builds | Walter Dörwald | 2002-11-21 | 3 | -0/+15 |
|
|
* | Bug #639118 from Ollie Oldham: archiver should use zipfile before zip | Andrew M. Kuchling | 2002-11-21 | 1 | -28/+30 |
|
|
* | NamedTemporaryFile: clarify behavior based on confusions noted by a | Tim Peters | 2002-11-21 | 1 | -2/+5 |
|
|
* | _RandomNameSequence(): style guide changes, small speedup, don't | Tim Peters | 2002-11-21 | 1 | -8/+8 |
|
|
* | _TemporaryFileWrapper: changed self.close_called to a proper bool. | Tim Peters | 2002-11-21 | 1 | -2/+2 |
|
|
* | Always call tparm with 10 arguments. It seems it's not varargs i | Michael W. Hudson | 2002-11-21 | 1 | -43/+3 |
|
|
* | name kwargs kwargs | Just van Rossum | 2002-11-21 | 1 | -2/+2 |
|
|
* | Tools to create MacOS X (application) bundles. | Just van Rossum | 2002-11-21 | 1 | -0/+307 |
|
|
* | Apply Nicolas Riley's Patch. | Kurt B. Kaiser | 2002-11-21 | 1 | -5/+5 |
|
|
* | Fix SF #640094, on win32 getpass runs into unix_getpass | Neal Norwitz | 2002-11-20 | 1 | -1/+4 |
|
|
* | - cleaned up example/test code | Just van Rossum | 2002-11-20 | 1 | -29/+30 |
|
|
* | Add missing import | Andrew M. Kuchling | 2002-11-20 | 1 | -1/+1 |
|
|
* | dded cvsignores. | Jack Jansen | 2002-11-20 | 4 | -2/+12 |
|
|
* | Minimal instructions on building a MacPython-OSX addon for Apple's | Jack Jansen | 2002-11-20 | 1 | -0/+62 |
|
|
* | Build PythonLauncher for MacPython-OSX 2.2 as well. | Jack Jansen | 2002-11-20 | 2 | -5/+28 |
|
|