1. 15 Eki, 1993 2 kayıt (commit)
    • Sjoerd Mullender's avatar
      intobject.c: Save references to small integers, so that they can be · 842d2ccd
      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.
      842d2ccd
    • Guido van Rossum's avatar
      Makefile, import.c: Lance's alternative module search (allow .pyc file · 21d335ed
      Guido van Rossum yazdı
      without .py file); Bill's dynamic loading for SunOS using shared
      libraries.
      
      pwdmodule.c (mkgrent): remove DECREF of uninitialized variable.
      
      classobject.c (instance_getattr): Fix case when class lookup returns
      unbound method instead of function.
      21d335ed
  2. 12 Eki, 1993 2 kayıt (commit)
  3. 11 Eki, 1993 3 kayıt (commit)
  4. 01 Eki, 1993 2 kayıt (commit)
  5. 28 Eyl, 1993 4 kayıt (commit)
  6. 27 Eyl, 1993 2 kayıt (commit)
  7. 14 Eyl, 1993 1 kayıt (commit)
  8. 26 Agu, 1993 1 kayıt (commit)
  9. 25 Agu, 1993 1 kayıt (commit)
  10. 03 Agu, 1993 1 kayıt (commit)
  11. 29 Tem, 1993 4 kayıt (commit)
  12. 28 Tem, 1993 1 kayıt (commit)
    • Guido van Rossum's avatar
      * Added support for X11 modules. · a3309960
      Guido van Rossum yazdı
      * Makefile: change location of FORMS library.
      * posixmodule.c: turn #if 0 into #ifdef MSDOS (stuff in unistd.h or not)
      * Almost all .h files: added CPP magic to avoid duplicate inclusions and
        to support inclusion from C++.
      a3309960
  13. 26 Tem, 1993 1 kayıt (commit)
  14. 23 Tem, 1993 1 kayıt (commit)
  15. 19 Tem, 1993 2 kayıt (commit)
  16. 11 Tem, 1993 1 kayıt (commit)
  17. 10 Tem, 1993 1 kayıt (commit)
  18. 09 Tem, 1993 1 kayıt (commit)
    • Guido van Rossum's avatar
      * config.c: different default PYTHONPATH for MS-DOS · e22e6442
      Guido van Rossum yazdı
      * timemodule.c: change #ifdef TURBO_C into #ifdef MSDOS
      * posixmodule.c: MSDOS changes by Marcel van der Peijl (Digicash)
      * stropmodule.c: use C isspace(c) to test for whitespace; add
        whitespace, lowercase and uppercase variables to the module.
      e22e6442
  19. 08 Tem, 1993 1 kayıt (commit)
  20. 06 Tem, 1993 1 kayıt (commit)
  21. 05 Tem, 1993 1 kayıt (commit)
    • Guido van Rossum's avatar
      * Makefile: added all: and default: targets. · f1dc5663
      Guido van Rossum yazdı
      * many files: made some functions static; removed "extern int errno;".
      * frozenmain.c: fixed bugs introduced on 24 June...
      * flmodule.c: remove 1.5 bw compat hacks, add new functions in 2.2a
        (and some old functions that were omitted).
      * timemodule.c: added MSDOS floatsleep version .
      * pgenmain.c: changed exit() to goaway() and added defn of goaway().
      * intrcheck.c: add hack (to UNIX only) so interrupting 3 times
        will exit from a hanging program.  The second interrupt prints
        a message explaining this to the user.
      f1dc5663
  22. 24 Haz, 1993 1 kayıt (commit)
    • Guido van Rossum's avatar
      * pythonmain.c: -k option, usage message, more environment flags. · 9e90a672
      Guido van Rossum yazdı
        (the latter also in frozenmain.c)
      * ceval.c: global 'killprint' flag raises exception when printing an
        expression statement's value (useful for finding stray output)
      * timemodule.c: add asctime() and ctime().  Change julian date to
        1-based origin (as intended and documented).
      * Removed unused DO_TIMES stuff from timemodule.c.  Added 'epoch' and
        'day0' globals (year where time.time() == 0 and day of the week the
        epoch started).
      9e90a672
  23. 23 Haz, 1993 2 kayıt (commit)
  24. 20 Haz, 1993 1 kayıt (commit)
    • Guido van Rossum's avatar
      * aifc.py: don't die on invalid MARK chunk · 9b3bc715
      Guido van Rossum yazdı
      * calendar.py: remove stuff now built in time; some cleanup and
        generalization in the calendar printing
      * cmd.py: use __init__.
      * tzparse.py: This module is no longer necessary -- use builtin time instead!
      9b3bc715
  25. 17 Haz, 1993 2 kayıt (commit)
    • Guido van Rossum's avatar
      * calendar.py: minor cleanups · 52fc1f60
      Guido van Rossum yazdı
      * ftplib.py: support __init__ with optional host, port args
      * aifc.py: ensure header is written on close even when no data is written
      52fc1f60
    • Guido van Rossum's avatar
      * Added gmtime/localtime/mktime and SYSV timezone globals to timemodule.c. · 234f942a
      Guido van Rossum yazdı
        Added $(SYSDEF) to its build rule in Makefile.
      * cgensupport.[ch], modsupport.[ch]: removed some old stuff.  Also
        changed files that still used it...  And made several things static
        that weren't but should have been...  And other minor cleanups...
      * listobject.[ch]: add external interfaces {set,get}listslice
      * socketmodule.c: fix bugs in new send() argument parsing.
      * sunaudiodevmodule.c: added flush() and close().
      234f942a