diff options
author | Guido van Rossum <guido@python.org> | 1993-01-09 17:18:52 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1993-01-09 17:18:52 (GMT) |
commit | 775f4dacbc8163f085e07ea4195cf5b67dce5124 (patch) | |
tree | 8db650ae8f063e834f576a6f86f2cfdd982dffed /Python/ceval.c | |
parent | d513f0bcb6e743c7569cefce597ad748b9a54bbc (diff) | |
download | cpython-775f4dacbc8163f085e07ea4195cf5b67dce5124.zip cpython-775f4dacbc8163f085e07ea4195cf5b67dce5124.tar.gz cpython-775f4dacbc8163f085e07ea4195cf5b67dce5124.tar.bz2 |
* Makefile: use cp -r to install the library
* ceval.c: use #ifdef COMPAT_HACKS instead of #if 0
* Makefile: fix to make clmodule.c compile;
make config.o dependent on libpython.a (so date is always correct)
* timemodule.c: now sleep() also takes a float argument.
* posixmodule.c: added nice().
Diffstat (limited to 'Python/ceval.c')
-rw-r--r-- | Python/ceval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index 4a278aa..a46fd36 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -819,7 +819,7 @@ eval_code(co, globals, locals, arg) n = gettuplesize(v); } } -#if 0 /* Compatibility hacks no longer needed (I think) */ +#ifdef COMPAT_HACKS /* Compatibility hacks no longer needed (I think) */ else if (n != 1 && oparg == 1) { /* Rule (b) */ PUSH(v); |