* 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().
This commit is contained in:
Guido van Rossum 1993-01-09 17:18:52 +00:00
parent d513f0bcb6
commit 775f4dacbc
3 changed files with 45 additions and 33 deletions

View file

@ -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);