Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 ↵ | Piers Lauder | 2002-11-22 | 1 | -12/+109 |
| | | | | method | ||||
* | added details of new IMAP4_stream class; emphasised meaning of data part of ↵ | Piers Lauder | 2002-11-22 | 1 | -7/+29 |
| | | | | command results; added proxyauth command description | ||||
* | 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 |
| | | | | | | | | | | | Already supported dict() and dict(mapping). Now supports dict(itemsequence) and Just van Rossum's new syntax for dict(keywordargs). Also, added related unittests. The docs already promise dict-like behavior so no update is needed there. | ||||
* | 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 |
| | | | | | | | | long but the double is too big to fit in a long. Prevent that. This closes some recent bug or patch on SF, but SF is down now so I can't say which. Bugfix candidate. | ||||
* | 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 |
| | | | | | | | | interrupted. A try/finally will do nicely. Maybe other classes need this too, but since they manipulate more state it's less clear that that is always the right thing, and I'm in a hurry. Backport candidate. | ||||
* | Patch #639371: Remove FreeBSD 5 specific test, test for ctermid_r, setgroups | Martin v. Löwis | 2002-11-21 | 3 | -17/+142 |
| | | | | prototypes explicitly. | ||||
* | 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 |
| | | | | | the --disable-unicode build doesn't complain about an unused variable. | ||||
* | 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 |
| | | | | so the --disable-unicode build doesn't complain about unused variables. | ||||
* | Fix PEP 293 related problems with --disable-unicode builds | Walter Dörwald | 2002-11-21 | 3 | -0/+15 |
| | | | | | reported by Michael Hudson in http://mail.python.org/pipermail/python-dev/2002-November/030299.html | ||||
* | Bug #639118 from Ollie Oldham: archiver should use zipfile before zip | Andrew M. Kuchling | 2002-11-21 | 1 | -28/+30 |
| | | | | | | | | | | | Previously archive_util.py attempted to spawn an external 'zip' program for the zip action, if this fails, an attempt to import zipfile.py is made... This bites folks who have 'old' or non-conforming zip programs on windows platforms. This change tries the 'zipfile' module first, falling back to spawning a zip process if the module isn't available. | ||||
* | NamedTemporaryFile: clarify behavior based on confusions noted by a | Tim Peters | 2002-11-21 | 1 | -2/+5 |
| | | | | user, and spell out a x-platform use limitation. | ||||
* | _RandomNameSequence(): style guide changes, small speedup, don't | Tim Peters | 2002-11-21 | 1 | -8/+8 |
| | | | | | put more in the critical section than absolutely needed, acquire the mutex before the "try". | ||||
* | _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 |
| | | | | | | | | more often than it is. In response to bug: [ 641808 ] Portability of Modules/_cursesmodule.c submitted by Nick Mclaren. | ||||
* | 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 |
| | | | | | | | Todo: - command line parsing - main program - modulefinder(-like ;-) support to build standalone apps. | ||||
* | Apply Nicolas Riley's Patch. | Kurt B. Kaiser | 2002-11-21 | 1 | -5/+5 |
| | | | | | | | | [ 634250 ] SearchDialogBase.py fix for Tk 8.4.1 SearchDialogBase refers to the grid 'col' option considered ambiguous with Python 2.2.2 and Tk 8.4.1. The correct name is 'column'. | ||||
* | Fix SF #640094, on win32 getpass runs into unix_getpass | Neal Norwitz | 2002-11-20 | 1 | -1/+4 |
| | | | | | | | | Make sure we have a UNIX-compatible termios. Apparently, McMillan Installer made a termios on windows which caused unix_getpass() to be used instead of win_getpass(). Will backport. | ||||
* | - cleaned up example/test code | Just van Rossum | 2002-11-20 | 1 | -29/+30 |
| | | | | | | - don't encode/escape elements - fixed typo in doc string - provide our own copy function for the Dict class | ||||
* | 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 |
| | | | | /usr/bin/python. | ||||
* | Build PythonLauncher for MacPython-OSX 2.2 as well. | Jack Jansen | 2002-11-20 | 2 | -5/+28 |
| | |||||
* | This file is now generated dynamically. | Jack Jansen | 2002-11-20 | 1 | -2/+0 |
| | |||||
* | Add change to int() and OverflowError | Andrew M. Kuchling | 2002-11-20 | 1 | -9/+19 |
| | | | | Re-order the "porting" section to list items by decreasing significance | ||||
* | removed a redundant .strip(); made a doc string more or less tell the truth | Just van Rossum | 2002-11-19 | 1 | -3/+5 |
| | |||||
* | No need to import __builtin__, spotted by Skip. | Just van Rossum | 2002-11-19 | 1 | -4/+4 |
| | |||||
* | Pure Python implementation of a plist generator/parser. | Just van Rossum | 2002-11-19 | 1 | -0/+433 |
| | |||||
* | Document additional error handling names available through PEP 293. | Walter Dörwald | 2002-11-19 | 1 | -2/+6 |
| | |||||
* | Add missing documentation for the PEP 293 functionality to | Walter Dörwald | 2002-11-19 | 1 | -7/+22 |
| | | | | the codecs docstrings. | ||||
* | Fix typo. | Walter Dörwald | 2002-11-19 | 1 | -1/+1 |
| | |||||
* | Change int() so that passing a string, unicode, float or long argument | Walter Dörwald | 2002-11-19 | 9 | -48/+81 |
| | | | | | | | that is outside the integer range no longer raises OverflowError, but returns a long object instead. This fixes SF bug http://www.python.org/sf/635115 | ||||
* | Replace bsddb3 and _db occurrences. | Martin v. Löwis | 2002-11-19 | 3 | -4/+4 |
| | |||||
* | Importing test suite from bsddb3 3.4.0 (with modifications). | Martin v. Löwis | 2002-11-19 | 17 | -1/+3304 |
| | |||||
* | Renamed Wise vrbl from _TCLMINOR_ to _TCLDIR_, to remove any script | Tim Peters | 2002-11-19 | 2 | -19/+23 |
| | | | | | dependence on the Tcl/Tk version number. Now you point it at the Tcl/Tk install you want to ship, and that's what it ships. | ||||
* | Add Lib/bsddb to list of installed directories | Andrew M. Kuchling | 2002-11-19 | 1 | -1/+1 |
| | |||||
* | Add comment to Distutil files about requiring 1.5.2 compatibility, as | Andrew M. Kuchling | 2002-11-19 | 37 | -1/+78 |
| | | | | suggested by PEP 291. | ||||
* | Use \ulink instead of \citetitle; bump version number | Andrew M. Kuchling | 2002-11-19 | 1 | -7/+7 |
| | |||||
* | Add PyBSDDB update | Andrew M. Kuchling | 2002-11-19 | 1 | -2/+12 |
| |