summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* dded cvsignores.Jack Jansen2002-11-204-2/+12
|
* Minimal instructions on building a MacPython-OSX addon for Apple'sJack Jansen2002-11-201-0/+62
| | | | /usr/bin/python.
* Build PythonLauncher for MacPython-OSX 2.2 as well.Jack Jansen2002-11-202-5/+28
|
* This file is now generated dynamically.Jack Jansen2002-11-201-2/+0
|
* Add change to int() and OverflowErrorAndrew M. Kuchling2002-11-201-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 truthJust van Rossum2002-11-191-3/+5
|
* No need to import __builtin__, spotted by Skip.Just van Rossum2002-11-191-4/+4
|
* Pure Python implementation of a plist generator/parser.Just van Rossum2002-11-191-0/+433
|
* Document additional error handling names available through PEP 293.Walter Dörwald2002-11-191-2/+6
|
* Add missing documentation for the PEP 293 functionality toWalter Dörwald2002-11-191-7/+22
| | | | the codecs docstrings.
* Fix typo.Walter Dörwald2002-11-191-1/+1
|
* Change int() so that passing a string, unicode, float or long argumentWalter Dörwald2002-11-199-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öwis2002-11-193-4/+4
|
* Importing test suite from bsddb3 3.4.0 (with modifications).Martin v. Löwis2002-11-1917-1/+3304
|
* Renamed Wise vrbl from _TCLMINOR_ to _TCLDIR_, to remove any scriptTim Peters2002-11-192-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 directoriesAndrew M. Kuchling2002-11-191-1/+1
|
* Add comment to Distutil files about requiring 1.5.2 compatibility, asAndrew M. Kuchling2002-11-1937-1/+78
| | | | suggested by PEP 291.
* Use \ulink instead of \citetitle; bump version numberAndrew M. Kuchling2002-11-191-7/+7
|
* Add PyBSDDB updateAndrew M. Kuchling2002-11-191-2/+12
|
* Don't try to use unsupported DB versions.Martin v. Löwis2002-11-192-10/+9
|
* Document PyBSDDB import.Martin v. Löwis2002-11-191-0/+5
|
* Import PyBSDDB 3.4.0. Rename historical wrapper to bsddb185.Martin v. Löwis2002-11-1911-58/+5912
|
* Comment on PyNumber_Check().Guido van Rossum2002-11-181-1/+3
|
* Note that PyNumber_Check() returns true for string and unicode objects.Neil Schemenauer2002-11-181-0/+4
|
* Add __mod__ method to UserString.Neil Schemenauer2002-11-181-0/+2
|
* check for str.__mod__Neil Schemenauer2002-11-181-0/+3
|
* check for unicode.__mod__Neil Schemenauer2002-11-181-0/+1
|
* Add nb_remainder (i.e. __mod__) slot to unicode type. Fixes SF bug #615506.Neil Schemenauer2002-11-181-2/+21
|
* Add nb_remainder (i.e. __mod__) slot to str type. Fixes SF bug #615506.Neil Schemenauer2002-11-181-2/+22
|
* Improve exception message raised by PyFloat_AsDouble if the object does notNeil Schemenauer2002-11-181-2/+6
| | | | have a nb_float slot. This matches what PyInt_AsLong does.
* str and unicode objects now have a __mod__ slot so don't special case them inNeil Schemenauer2002-11-181-6/+0
| | | | | PyNumber_Remainder(). This fixes SF bug #615506 and allows string and unicode subclasses to override __mod__.
* Don't use PyNumber_Float() since it's is nearly useless. Instead, rely onNeil Schemenauer2002-11-181-4/+2
| | | | PyFloat_AsDouble to generate a good error message.
* Another workaround, to find the IDE directory when we're in MacPython-OSXJack Jansen2002-11-181-0/+10
| | | | | | on Jaguar. Ceteram censeam W era packagendam esse.
* Define PyDoc_STR if it isn't defined. This makes these modules compileJack Jansen2002-11-189-1/+25
| | | | for Python 2.2.
* Build waste, _Help and _Scrap too.Jack Jansen2002-11-181-6/+78
|
* Improve comments. Clarify docs.Raymond Hettinger2002-11-182-26/+26
| | | | | Replace "type(0)" with "int". Replace "while 1" with "while True"
* Improve DictMixin.Raymond Hettinger2002-11-183-37/+52
| | | | | | | | | | | Replaced docstring with comments. Prevents subclass contamination. Added the missing __cmp__() method and a test for __cmp__(). Used try/except style in preference to has_key() followed by a look-up. Used iteritem() where possible to save creating a long key list and to save redundant lookups. Expanded .update() to look for the most helpful methods first and gradually work down to a mininum expected interface. Expanded documentation to be more clear on how to use the class.
* Guard against error if .netrc is missing.Eric S. Raymond2002-11-171-7/+10
|
* Remove _Py_ResetReferences. Fixes bug #529750 "Circular reference makesNeil Schemenauer2002-11-173-12/+0
| | | | | | Py_Init crash". refchain cannot be cleared because objects can live across Py_Finalize() and Py_Initialize() if they are kept alive by circular references.
* correct typo detected by Lee HansenSkip Montanaro2002-11-171-1/+1
|
* Better note that str.zfill() was added in 2.2.2 as well. ;-(Fred Drake2002-11-161-0/+1
|
* Document that a minor feature was added in 2.2.2. ;-(Fred Drake2002-11-161-0/+3
| | | | Closes SF bug #639170.
* SF Patch #638825Neal Norwitz2002-11-151-4/+7
| | | | | Fix pychecker warnings, port arg was unused (it was always the default) Need a global statement for _listener
* SF Patch #638825 logging moduleNeal Norwitz2002-11-151-3/+3
| | | | Fix pychecker warnings, remove unused imports and rename root
* SF 639138, Ref. calendar module in time docs by John J LeeNeal Norwitz2002-11-151-0/+3
| | | | Will backport.
* Minor markup nits.Fred Drake2002-11-151-4/+5
|
* Fix stupid typo.Fred Drake2002-11-151-1/+1
|
* Document the available command line flags for bdist_wininst, which areThomas Heller2002-11-151-15/+29
| | | | | | | | | | | | | avaliable in the Python 2.2 branch. I've left out some flags which are more thought for debugging, if someone needs them, he can always look at the output of --help. I'm sure Fred will make some adjustments, so I'll only mark this as a 2.2 bugfix candidate. There are more options available in the current CVS bdist_wininst, I will document them after this is in.
* Correct typo: the option is 'formats' not 'format'.Thomas Heller2002-11-151-1/+1
|
* Style guide reformats. I saw this test fail on a very heavily loadedTim Peters2002-11-151-6/+9
| | | | | | Win98SE box, but whatever the cause, it had scrolled off the DOS box. (There was just the "test_queue failed" summary at the end of the regrtest run.)