summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Include download_url in the data POSTed to the catalog serverAndrew M. Kuchling2003-02-191-0/+1
|
* [Patch #683939] Add download_url field to metadataAndrew M. Kuchling2003-02-192-2/+9
|
* [Patch #684398] Rename verbose argument to show-response; don't ↵Andrew M. Kuchling2003-02-191-9/+8
| | | | conditionalize the get_classifiers() call
* logging.warn() renamed to warning()Andrew M. Kuchling2003-02-191-3/+3
|
* OS/2 has no concept of file ownership, like DOS & MS Windows versionAndrew MacIntyre2003-02-191-1/+2
| | | | | | prior to NT. EMX has a number of Posix emulation routines, including geteuid() but lacks chown(), so silently skip trying to actually set a file ownership when extracting a file from a tar archive.
* OS/2 EMX build updates for recent CVS changesAndrew MacIntyre2003-02-192-2/+15
|
* Use pythonw as the default interpreter also for .py scripts (overridableJack Jansen2003-02-191-4/+9
| | | | | by the user), as this will cause the least surprises with scripts brought over from other unixen. Suggested by Kevin Altis.
* os.mkdir() would crash with a Unicode filename and mode param.Mark Hammond2003-02-191-1/+1
|
* PyObject_Generic{Get,Set}Attr:Guido van Rossum2003-02-191-2/+4
| | | | | | | | | | Don't access tp_descr_{get,set} of a descriptor without checking the flag bits of the descriptor's type. While we know that the main type (the type of the object whose attribute is being accessed) has all the right flag bits (or else PyObject_Generic{Get,Set}Attr wouldn't be called), we don't know that for its class attributes! Will backport to 2.2.
* Reverted whitespace normalization on this file. I should really changeTim Peters2003-02-191-9/+10
| | | | | this thing so it doesn't rely on being unnormalized. (That's the editorial "I", if anyone's listening <wink>.)
* Removed debugging print in test_tarfile.Tim Peters2003-02-192-1/+18
| | | | | In the Windows installer, continued the endless battle to copy over files with new one-shot extensions.
* Whitespace normalization.Tim Peters2003-02-1926-114/+110
|
* Rename _better_reduce to _reduce_2, to make sure that any code thatGuido van Rossum2003-02-191-10/+5
| | | | | was still referencing it will fail. Also removed some debug cruft from _reduce_ex.
* Use __reduce_ex__.Guido van Rossum2003-02-191-45/+36
|
* Remove now unused _better_reduce.Guido van Rossum2003-02-191-1/+1
|
* Use __reduce_ex__ in copy.py. The test_*copy_cant() tests are simpler again.Guido van Rossum2003-02-193-33/+66
|
* Fix bug 683658 - PyErr_Warn may cause import deadlock.Mark Hammond2003-02-193-6/+19
|
* Undid half of the previous checkin: continue using BuildApplet for mostJack Jansen2003-02-181-14/+8
| | | | applets. PackageManager is still built with bundlebuilder itself.
* Added a note that MacOSX applets can no longer be run from a terminal window.Jack Jansen2003-02-181-1/+3
|
* Enable argv emulation if required.Jack Jansen2003-02-181-2/+4
| | | | Fixed a bug for applets with their own plist files.
* Added an argv_emulation option (command line option: --argv or -a) whichJack Jansen2003-02-181-2/+36
| | | | | creates the sys.argv emulation wrapper for droplets. Also updates the plist, if needed, and the includedModules (but this last is untested).
* Argvemulator still used the old Alias API. Fixed.Jack Jansen2003-02-181-2/+2
|
* Remove unused _better_reduce (which will disappear soon) andGuido van Rossum2003-02-181-1/+1
| | | | _reconstructor (whose import here is a mystery to me).
* Three test cases for __reduce_ex__. This fails for cPickle, until TimGuido van Rossum2003-02-181-0/+52
| | | | checks in his changes to support this in cPickle.c.
* I entered the wrong year for 2.3a2.Tim Peters2003-02-181-1/+1
|
* Bump version number.Fred Drake2003-02-182-2/+2
|
* Introducing __reduce_ex__, which is called with a protocol number argumentGuido van Rossum2003-02-184-19/+36
| | | | | if it exists in preference over __reduce__. Now Tim can go implement this in cPickle.c.
* Bump Windows build number for 2.3a2.Tim Peters2003-02-181-1/+1
|
* Bump version # to 2.3a2.Tim Peters2003-02-184-10/+12
|
* Use python.org as the repositoryAndrew M. Kuchling2003-02-181-2/+1
|
* save_global(): Trying to resolve module.name can fail for twoTim Peters2003-02-181-3/+5
| | | | | | | reasons: importing module can fail, or the attribute lookup module.name can fail. We were giving the same error msg for both cases, making it needlessly hard to guess what went wrong. These cases give different error msgs now.
* Removed unreferenced label.Tim Peters2003-02-181-2/+1
|
* The recent changes to super(), in particular supercheck(), broke whenGuido van Rossum2003-02-181-9/+7
| | | | | | | | using super() for an instance in a metaclass situation. Because the class was a metaclass, the instance was a class, and hence the PyType_Check() branch was taken. But this branch didn't apply. Make it so that if this branch doesn't apply, the other branch is still tried. All tests pass.
* Make __module__ writable except in restricted mode (like for classic classes).Guido van Rossum2003-02-182-2/+2
|
* Make __module__ settable on functions and methods.Jeremy Hylton2003-02-182-2/+2
|
* One doctest displaying a dict didn't sort it first. *Maybe* this fixesTim Peters2003-02-181-2/+2
| | | | the AIX problem with this test.
* default_3way_compare(): use PyNumber_Check(), rather than testing forGuido van Rossum2003-02-181-3/+3
| | | | tp_as_number directly.
* Make PyNumber_Check() a bit more careful, since all sorts of thingsGuido van Rossum2003-02-182-1/+11
| | | | now have tp_as_number. Check for nb_int or nb_float.
* Fold some long lines.Guido van Rossum2003-02-181-14/+31
| | | | Change fatal errors during module initialization into RuntimeErrors.
* Fix SF bug #688424, 64-bit test problemsNeal Norwitz2003-02-181-26/+71
|
* Fix SF bug #688424, 64-bit test problemsNeal Norwitz2003-02-182-3/+8
|
* Copy the trace module here from Tools/scripts.Jeremy Hylton2003-02-181-0/+729
| | | | | | There are some problems with this module, but the tool works for simple tasks and no one else has volunteered a better code coverage tool. Should cleanup and document before the beta release.
* SF patch #687683, Patches to logging (updates from Vinay)Neal Norwitz2003-02-185-63/+98
| | | | | | Mostly rename WARN -> WARNING Other misc tweaks Update tests (not in original patch)
* Use "$@" to pass arguments to Python in stead of "${1}". This passes allJack Jansen2003-02-181-1/+1
| | | | arguments, and also does the right thing for the no argument case.
* Don't try to build dl on darwin. It doesn't build out of the box, and itJack Jansen2003-02-181-1/+1
| | | | wouldn't serve a useful purpose anyway.
* Fix 64-bit problem, ParseTuple("i") needs C ints; ("l") needs C longs.Neal Norwitz2003-02-181-1/+1
| | | | | Use "l" as that *probably* makes more sense (at least to me it does :-) And the test passes on the alpha.
* [Patch #681504] Call customize_compiler in config commandAndrew M. Kuchling2003-02-181-0/+2
|
* Add two acks; bump version numberAndrew M. Kuchling2003-02-181-3/+3
|
* [Bug #688261] Fix optparse example and outputAndrew M. Kuchling2003-02-181-2/+5
|
* [Bug #683416] Make PEP263 coverage a bit more explicit, and add it to theAndrew M. Kuchling2003-02-181-6/+14
| | | | porting section