1. 25 Nis, 2006 1 kayıt (commit)
    • Thomas Wouters's avatar
      Define MAXPATHLEN to be at least PATH_MAX, if that's defined. Python uses · 1ddba60e
      Thomas Wouters yazdı
      MAXPATHLEN-sized buffers for various output-buffers (like to realpath()),
      and that's correct on BSD platforms, but not Linux (which uses PATH_MAX, and
      does not define MAXPATHLEN.) Cursory googling suggests Linux is following a
      newer standard than BSD, but in cases like this, who knows. Using the
      greater of PATH_MAX and 1024 as a fallback for MAXPATHLEN seems to be the
      most portable solution.
      1ddba60e
  2. 01 Eyl, 2000 1 kayıt (commit)
  3. 22 Tem, 2000 1 kayıt (commit)
  4. 30 Haz, 2000 2 kayıt (commit)
  5. 28 Haz, 2000 1 kayıt (commit)
  6. 25 Eki, 1996 1 kayıt (commit)
  7. 04 Ock, 1995 1 kayıt (commit)
    • Guido van Rossum's avatar
      Added 1995 to copyright message. · 6d023c98
      Guido van Rossum yazdı
      bltinmodule.c: fixed coerce() nightmare in ternary pow().
      modsupport.c (initmodule2): pass METH_FREENAME flag to newmethodobject().
      pythonrun.c: move flushline() into and around print_error().
      6d023c98
  8. 30 Agu, 1994 1 kayıt (commit)
  9. 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
  10. 29 Mar, 1993 1 kayıt (commit)
    • Guido van Rossum's avatar
      * Changed all copyright messages to include 1993. · 9bfef44d
      Guido van Rossum yazdı
      * Stubs for faster implementation of local variables (not yet finished)
      * Added function name to code object.  Print it for code and function
        objects.  THIS MAKES THE .PYC FILE FORMAT INCOMPATIBLE (the version
        number has changed accordingly)
      * Print address of self for built-in methods
      * New internal functions getattro and setattro (getattr/setattr with
        string object arg)
      * Replaced "dictobject" with more powerful "mappingobject"
      * New per-type functio tp_hash to implement arbitrary object hashing,
        and hashobject() to interface to it
      * Added built-in functions hash(v) and hasattr(v, 'name')
      * classobject: made some functions static that accidentally weren't;
        added __hash__ special instance method to implement hash()
      * Added proper comparison for built-in methods and functions
      9bfef44d
  11. 05 Nis, 1992 1 kayıt (commit)
  12. 19 Şub, 1991 2 kayıt (commit)
  13. 21 Ock, 1991 1 kayıt (commit)