- 19 Feb, 2003 13 commits
-
-
Andrew MacIntyre authored
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.
-
Andrew MacIntyre authored
-
Jack Jansen authored
by the user), as this will cause the least surprises with scripts brought over from other unixen. Suggested by Kevin Altis.
-
Mark Hammond authored
-
Guido van Rossum authored
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.
-
Tim Peters authored
this thing so it doesn't rely on being unnormalized. (That's the editorial "I", if anyone's listening <wink>.)
-
Tim Peters authored
In the Windows installer, continued the endless battle to copy over files with new one-shot extensions.
-
Tim Peters authored
-
Guido van Rossum authored
was still referencing it will fail. Also removed some debug cruft from _reduce_ex.
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Guido van Rossum authored
-
Mark Hammond authored
-
- 18 Feb, 2003 27 commits
-
-
Jack Jansen authored
applets. PackageManager is still built with bundlebuilder itself.
-
Jack Jansen authored
-
Jack Jansen authored
Fixed a bug for applets with their own plist files.
-
Jack Jansen authored
creates the sys.argv emulation wrapper for droplets. Also updates the plist, if needed, and the includedModules (but this last is untested).
-
Jack Jansen authored
-
Guido van Rossum authored
_reconstructor (whose import here is a mystery to me).
-
Guido van Rossum authored
checks in his changes to support this in cPickle.c.
-
Tim Peters authored
-
Fred Drake authored
-
Guido van Rossum authored
if it exists in preference over __reduce__. Now Tim can go implement this in cPickle.c.
-
Tim Peters authored
-
Tim Peters authored
-
Andrew M. Kuchling authored
-
Tim Peters authored
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.
-
Tim Peters authored
-
Guido van Rossum authored
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.
-
Guido van Rossum authored
-
Jeremy Hylton authored
-
Tim Peters authored
the AIX problem with this test.
-
Guido van Rossum authored
tp_as_number directly.
-
Guido van Rossum authored
now have tp_as_number. Check for nb_int or nb_float.
-
Guido van Rossum authored
Change fatal errors during module initialization into RuntimeErrors.
-
Neal Norwitz authored
-
Neal Norwitz authored
-
Jeremy Hylton authored
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.
-
Neal Norwitz authored
Mostly rename WARN -> WARNING Other misc tweaks Update tests (not in original patch)
-
Jack Jansen authored
arguments, and also does the right thing for the no argument case.
-