- 14 Ara, 1998 1 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
> mpz.mpz('\xff') should return mpz(255). Instead it returns > mpz(4294967295L). Looks like the constructor doesn't work with strings > containing characters above chr(128). Caused by using just 'char' where 'unsigned char' should have been used.
-
- 04 Ara, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
on BeOS or Windows.
-
- 08 Eki, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 03 Nis, 1998 1 kayıt (commit)
-
-
Fred Drake yazdı
-
- 15 Ara, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
Chris Lawrence <quango@ix.netcom.com>
-
- 17 Agu, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
__GNU_MP__ as empty: #if __GNU_MP__ + 0 == 2 (Untested.)
-
- 14 Mar, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 14 Şub, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
Two new modules fpectl and fpetest. Surround various and sundry f.p. operations with PyFPE_*_PROTECT macros.
-
- 09 Ara, 1996 2 kayıt (commit)
-
-
Barry Warsaw yazdı
-
Barry Warsaw yazdı
really test this module, or even compile it without a lot of work. I'll make a note of it that this has not been tested!
-
- 25 Eki, 1996 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 19 Agu, 1996 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 10 Şub, 1995 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 10 Ock, 1995 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 04 Ock, 1995 1 kayıt (commit)
-
-
Guido van Rossum yazdı
Setup.in: clarified Tk comments somewhat. structmodule.c: use memcpy() instead of double precision assignment.
-
- 02 Ock, 1995 1 kayıt (commit)
-
-
Guido van Rossum yazdı
Note addition of gethostbyaddr() and improved repr() for sockets, renaming of md5.md5() to md5.new(), and fixing of leaks in threads.
-
- 01 Agu, 1994 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 17 Ara, 1993 1 kayıt (commit)
-
-
Guido van Rossum yazdı
* traceback.c (tb_print): use sys.tracebacklimit as a maximum number of traceback entries to print (default 1000). * ceval.c (printtraceback): Don't print stack trace header -- this is now done by tb_print().
-
- 05 Kas, 1993 1 kayıt (commit)
-
-
Guido van Rossum yazdı
* object.[ch], bltinmodule.c, fileobject.c: changed str() to call strobject() which calls an object's __str__ method if it has one. strobject() is also called by writeobject() when PRINT_RAW is passed. * ceval.c: rationalize code for PRINT_ITEM (no change in function!) * funcobject.c, codeobject.c: added compare and hash functionality. Functions with identical code objects and the same global dictionary are equal. Code objects are equal when their code, constants list and names list are identical (i.e. the filename and code name don't count). (hash doesn't work yet since the constants are in a list and lists can't be hashed -- suppose this should really be done with a tuple now we have resizetuple!)
-
- 14 Ara, 1992 1 kayıt (commit)
-
-
Guido van Rossum yazdı
return NULL for malloc(0) or realloc(p, 0). (This should be done differently than wasting one byte, but alas...) * Moved "add'l libraries" option in Makefile to an earlier place. * Remove argument compatibility hacks (b) and (c). * Add grey2mono, dither2mono and mono2grey to imageop. * Dup the fd in socket.fromfd(). * Added new modules mpz, md5 (by JH, requiring GNU MP 1.2). Affects Makefile and config.c. * socketmodule.c: added socket.fromfd(fd, family, type, [proto]), converted socket() to use of getargs().
-