1. 14 Ara, 1998 1 kayıt (commit)
    • Andrew M. Kuchling's avatar
      Fixed bug reported to Gregor Hoffleit: · 4c07f81d
      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.
      4c07f81d
  2. 04 Ara, 1998 1 kayıt (commit)
  3. 08 Eki, 1998 1 kayıt (commit)
  4. 03 Nis, 1998 1 kayıt (commit)
  5. 15 Ara, 1997 1 kayıt (commit)
  6. 17 Agu, 1997 1 kayıt (commit)
  7. 14 Mar, 1997 1 kayıt (commit)
  8. 14 Şub, 1997 1 kayıt (commit)
  9. 09 Ara, 1996 2 kayıt (commit)
  10. 25 Eki, 1996 1 kayıt (commit)
  11. 19 Agu, 1996 1 kayıt (commit)
  12. 10 Şub, 1995 1 kayıt (commit)
  13. 10 Ock, 1995 1 kayıt (commit)
  14. 04 Ock, 1995 1 kayıt (commit)
  15. 02 Ock, 1995 1 kayıt (commit)
  16. 01 Agu, 1994 1 kayıt (commit)
  17. 17 Ara, 1993 1 kayıt (commit)
  18. 05 Kas, 1993 1 kayıt (commit)
    • Guido van Rossum's avatar
      * mpzmodule.c: removed redundant mpz_print function. · c6004117
      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!)
      c6004117
  19. 14 Ara, 1992 1 kayıt (commit)
    • Guido van Rossum's avatar
      * mymalloc.h: always allocate one extra byte, since some malloc's · 5f59d601
      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().
      5f59d601