- 01 Kas, 1993 12 kayıt (commit)
-
-
Guido van Rossum yazdı
pythonrun.c: added static forward declarations * pythonrun.h, ceval.h, longobject.h, node.h: removed declarations of static routines
-
Guido van Rossum yazdı
meaning as no 4th argument
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
object.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
from RFC 1321 here, and point to that RFC instead of a non-existant incompatible file on rsa.com.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Sjoerd Mullender yazdı
Added ifdefs in stringobject.c for shared strings of length 1. Renamed free_list in tupleobject.c to free_tuples.
-
- 30 Eki, 1993 3 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
- 28 Eki, 1993 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 27 Eki, 1993 6 kayıt (commit)
-
-
Guido van Rossum yazdı
setlistslice() can be used to cut the unused part out of a freshly made slice (as done by bagof()). [needed by the next mod!] * structural changes to bagof(), map() etc.
-
Guido van Rossum yazdı
* lib1.tex (section{Built-in Functions}): added bagof(), lambda(), map() and reduce(). Repharased apply(). Removed or rephrased references to exec() (now the exec stmt). * lib4.tex: posix.exec --> posix.execv * ref4.tex, ref8.tex, tut.tex: builtin --> __builtin__ * lib3.tex (module string): added atof() and atol(), and ato[fl]_error.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
- 26 Eki, 1993 7 kayıt (commit)
-
-
Guido van Rossum yazdı
* PROTO.h, mymalloc.h: added #ifdefs for TURBOC and GNUC. * allobjects.h: added #include "rangeobject.h" * Grammar: added lambda_input; relaxed syntax for exec. * bltinmodule.c: added bagof, map, reduce, lambda, xrange. * tupleobject.[ch]: added resizetuple(). * rangeobject.[ch]: new object type to speed up range operations (not convinced this is needed!!!)
-
Guido van Rossum yazdı
some cases.
-
Guido van Rossum yazdı
as normal indexing does.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
- 25 Eki, 1993 2 kayıt (commit)
-
-
Guido van Rossum yazdı
* import.c: fixed core dump when out-of-date .pyc file encountered (again!)
-
Sjoerd Mullender yazdı
file. object.c: Write allocation statistics to stderr.
-
- 22 Eki, 1993 5 kayıt (commit)
-
-
Guido van Rossum yazdı
function vs. exec statement * bltinmodule.c: renamed the module to __builtin__. * posixmodule.c (posix_execv): renamed exec --> execv since it is now a reserved word.
-
Guido van Rossum yazdı
changed testing of exec.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
* builtin.py: b/w compat for builtin -> __builtin__ name change * string.py: added atof() and atol() and corresponding exceptions * test_types.py: added test for list sort with user comparison function
-
Sjoerd Mullender yazdı
cstubs: Use Matrix type instead of float[4][4].
-
- 18 Eki, 1993 3 kayıt (commit)
-
-
Guido van Rossum yazdı
(Also added a stub for "access".)
-
Guido van Rossum yazdı
* Grammar: add exec statement; allow testlist in expr statement. * ceval.c, compile.c, opcode.h: support exec statement; avoid optimizing locals when it is used * fileobject.{c,h}: add getfilename() internal function.
-
Guido van Rossum yazdı
no longer done by config.c). * stdwinmodule.c (initstdwin), config.c (initall): get command line arguments from sys.argv instead of special-casing stdwin in config.c * import.c (get_module): fix core dump when foomodule.o does not define initfoo(). * ChangeLog: documented changes by Sjoerd.
-
- 15 Eki, 1993 1 kayıt (commit)
-
-
Sjoerd Mullender yazdı
shared. The default is to save references to the integers in the range -1..99. The lower limit can be set by defining NSMALLNEGINTS (absolute value of smallest integer to be saved) and NSMALLPOSINTS (1 more than the largest integer to be saved). tupleobject.c: Save a reference to the empty tuple to be returned whenever a tuple of size 0 is requested. Tuples of size 1 upto, but not including, MAXSAVESIZE (default 20) are put in free lists when deallocated. When MAXSAVESIZE equals 1, only share references to the empty tuple, when MAXSAVESIZE equals 0, don't include the code at all and revert to the old behavior. object.c: Print some more statistics when COUNT_ALLOCS is defined.
-