Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Include download_url in the data POSTed to the catalog server | Andrew M. Kuchling | 2003-02-19 | 1 | -0/+1 |
| | |||||
* | [Patch #683939] Add download_url field to metadata | Andrew M. Kuchling | 2003-02-19 | 2 | -2/+9 |
| | |||||
* | [Patch #684398] Rename verbose argument to show-response; don't ↵ | Andrew M. Kuchling | 2003-02-19 | 1 | -9/+8 |
| | | | | conditionalize the get_classifiers() call | ||||
* | logging.warn() renamed to warning() | Andrew M. Kuchling | 2003-02-19 | 1 | -3/+3 |
| | |||||
* | OS/2 has no concept of file ownership, like DOS & MS Windows version | Andrew MacIntyre | 2003-02-19 | 1 | -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 changes | Andrew MacIntyre | 2003-02-19 | 2 | -2/+15 |
| | |||||
* | Use pythonw as the default interpreter also for .py scripts (overridable | Jack Jansen | 2003-02-19 | 1 | -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 Hammond | 2003-02-19 | 1 | -1/+1 |
| | |||||
* | PyObject_Generic{Get,Set}Attr: | Guido van Rossum | 2003-02-19 | 1 | -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 change | Tim Peters | 2003-02-19 | 1 | -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 Peters | 2003-02-19 | 2 | -1/+18 |
| | | | | | In the Windows installer, continued the endless battle to copy over files with new one-shot extensions. | ||||
* | Whitespace normalization. | Tim Peters | 2003-02-19 | 26 | -114/+110 |
| | |||||
* | Rename _better_reduce to _reduce_2, to make sure that any code that | Guido van Rossum | 2003-02-19 | 1 | -10/+5 |
| | | | | | was still referencing it will fail. Also removed some debug cruft from _reduce_ex. | ||||
* | Use __reduce_ex__. | Guido van Rossum | 2003-02-19 | 1 | -45/+36 |
| | |||||
* | Remove now unused _better_reduce. | Guido van Rossum | 2003-02-19 | 1 | -1/+1 |
| | |||||
* | Use __reduce_ex__ in copy.py. The test_*copy_cant() tests are simpler again. | Guido van Rossum | 2003-02-19 | 3 | -33/+66 |
| | |||||
* | Fix bug 683658 - PyErr_Warn may cause import deadlock. | Mark Hammond | 2003-02-19 | 3 | -6/+19 |
| | |||||
* | Undid half of the previous checkin: continue using BuildApplet for most | Jack Jansen | 2003-02-18 | 1 | -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 Jansen | 2003-02-18 | 1 | -1/+3 |
| | |||||
* | Enable argv emulation if required. | Jack Jansen | 2003-02-18 | 1 | -2/+4 |
| | | | | Fixed a bug for applets with their own plist files. | ||||
* | Added an argv_emulation option (command line option: --argv or -a) which | Jack Jansen | 2003-02-18 | 1 | -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 Jansen | 2003-02-18 | 1 | -2/+2 |
| | |||||
* | Remove unused _better_reduce (which will disappear soon) and | Guido van Rossum | 2003-02-18 | 1 | -1/+1 |
| | | | | _reconstructor (whose import here is a mystery to me). | ||||
* | Three test cases for __reduce_ex__. This fails for cPickle, until Tim | Guido van Rossum | 2003-02-18 | 1 | -0/+52 |
| | | | | checks in his changes to support this in cPickle.c. | ||||
* | I entered the wrong year for 2.3a2. | Tim Peters | 2003-02-18 | 1 | -1/+1 |
| | |||||
* | Bump version number. | Fred Drake | 2003-02-18 | 2 | -2/+2 |
| | |||||
* | Introducing __reduce_ex__, which is called with a protocol number argument | Guido van Rossum | 2003-02-18 | 4 | -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 Peters | 2003-02-18 | 1 | -1/+1 |
| | |||||
* | Bump version # to 2.3a2. | Tim Peters | 2003-02-18 | 4 | -10/+12 |
| | |||||
* | Use python.org as the repository | Andrew M. Kuchling | 2003-02-18 | 1 | -2/+1 |
| | |||||
* | save_global(): Trying to resolve module.name can fail for two | Tim Peters | 2003-02-18 | 1 | -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 Peters | 2003-02-18 | 1 | -2/+1 |
| | |||||
* | The recent changes to super(), in particular supercheck(), broke when | Guido van Rossum | 2003-02-18 | 1 | -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 Rossum | 2003-02-18 | 2 | -2/+2 |
| | |||||
* | Make __module__ settable on functions and methods. | Jeremy Hylton | 2003-02-18 | 2 | -2/+2 |
| | |||||
* | One doctest displaying a dict didn't sort it first. *Maybe* this fixes | Tim Peters | 2003-02-18 | 1 | -2/+2 |
| | | | | the AIX problem with this test. | ||||
* | default_3way_compare(): use PyNumber_Check(), rather than testing for | Guido van Rossum | 2003-02-18 | 1 | -3/+3 |
| | | | | tp_as_number directly. | ||||
* | Make PyNumber_Check() a bit more careful, since all sorts of things | Guido van Rossum | 2003-02-18 | 2 | -1/+11 |
| | | | | now have tp_as_number. Check for nb_int or nb_float. | ||||
* | Fold some long lines. | Guido van Rossum | 2003-02-18 | 1 | -14/+31 |
| | | | | Change fatal errors during module initialization into RuntimeErrors. | ||||
* | Fix SF bug #688424, 64-bit test problems | Neal Norwitz | 2003-02-18 | 1 | -26/+71 |
| | |||||
* | Fix SF bug #688424, 64-bit test problems | Neal Norwitz | 2003-02-18 | 2 | -3/+8 |
| | |||||
* | Copy the trace module here from Tools/scripts. | Jeremy Hylton | 2003-02-18 | 1 | -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 Norwitz | 2003-02-18 | 5 | -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 all | Jack Jansen | 2003-02-18 | 1 | -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 it | Jack Jansen | 2003-02-18 | 1 | -1/+1 |
| | | | | wouldn't serve a useful purpose anyway. | ||||
* | Fix 64-bit problem, ParseTuple("i") needs C ints; ("l") needs C longs. | Neal Norwitz | 2003-02-18 | 1 | -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 command | Andrew M. Kuchling | 2003-02-18 | 1 | -0/+2 |
| | |||||
* | Add two acks; bump version number | Andrew M. Kuchling | 2003-02-18 | 1 | -3/+3 |
| | |||||
* | [Bug #688261] Fix optparse example and output | Andrew M. Kuchling | 2003-02-18 | 1 | -2/+5 |
| | |||||
* | [Bug #683416] Make PEP263 coverage a bit more explicit, and add it to the | Andrew M. Kuchling | 2003-02-18 | 1 | -6/+14 |
| | | | | porting section |