1. 13 Eki, 2004 1 kayıt (commit)
  2. 20 Kas, 2003 1 kayıt (commit)
  3. 12 Ock, 2002 1 kayıt (commit)
  4. 02 Mar, 2001 1 kayıt (commit)
  5. 01 Eyl, 2000 1 kayıt (commit)
  6. 27 Agu, 2000 1 kayıt (commit)
  7. 23 Agu, 2000 1 kayıt (commit)
  8. 31 Tem, 2000 1 kayıt (commit)
  9. 25 Tem, 2000 1 kayıt (commit)
  10. 23 Tem, 2000 2 kayıt (commit)
    • Tim Peters's avatar
      Removed all instances of RETSIGTYPE from the source code: signal · 4f1b2081
      Tim Peters yazdı
      handlers "return void", according to ANSI C.
      Removed the new Py_RETURN_FROM_SIGNAL_HANDLER macro.
      Left RETSIGTYPE in the config stuff, because it's not clear to
      me that others aren't relying on it (e.g., extension modules).
      4f1b2081
    • Tim Peters's avatar
      Recent ANSIfication introduced a couple instances of · 1be46844
      Tim Peters yazdı
          #if RETSIGTYPE != void
      That isn't C, and MSVC properly refuses to compile it.
      Introduced new Py_RETURN_FROM_SIGNAL_HANDLER macro in pyport.h
      to expand to the correct thing based on RETSIGTYPE.  However,
      only void is ANSI!  Do we still have platforms that return int?
      The Unix config mess appears to #define RETSIGTYPE by magic
      without being asked to, so I assume it's "a problem" across
      Unices still.
      1be46844
  11. 22 Tem, 2000 2 kayıt (commit)
  12. 09 Tem, 2000 1 kayıt (commit)
  13. 30 Haz, 2000 2 kayıt (commit)
  14. 04 Ara, 1998 1 kayıt (commit)
  15. 02 Ara, 1997 1 kayıt (commit)
  16. 14 Kas, 1997 1 kayıt (commit)
    • Guido van Rossum's avatar
      This fix (across 4 files in 3 directories) solves a subtle problem with · 359bcaa5
      Guido van Rossum yazdı
      signal handlers in a fork()ed child process when Python is compiled with
      thread support.  The bug was reported by Scott <scott@chronis.icgroup.com>.
      
      What happens is that after a fork(), the variables used by the signal
      module to determine whether this is the main thread or not are bogus,
      and it decides that no thread is the main thread, so no signals will
      be delivered.
      
      The solution is the addition of PyOS_AfterFork(), which fixes the signal
      module's variables.  A dummy version of the function is present in the
      intrcheck.c source file which is linked when the signal module is not
      used.
      359bcaa5
  17. 02 Agu, 1997 1 kayıt (commit)
  18. 29 Nis, 1997 1 kayıt (commit)
  19. 14 Şub, 1997 1 kayıt (commit)
  20. 21 Ock, 1997 1 kayıt (commit)
  21. 02 Ara, 1996 1 kayıt (commit)
  22. 25 Eki, 1996 1 kayıt (commit)
  23. 19 Agu, 1996 1 kayıt (commit)
  24. 10 Mar, 1995 1 kayıt (commit)
  25. 30 Ock, 1995 1 kayıt (commit)
  26. 27 Ock, 1995 1 kayıt (commit)
  27. 26 Ock, 1995 1 kayıt (commit)
  28. 20 Ock, 1995 1 kayıt (commit)
  29. 19 Ock, 1995 1 kayıt (commit)
  30. 17 Ock, 1995 1 kayıt (commit)
  31. 04 Ock, 1995 1 kayıt (commit)
  32. 28 Eyl, 1994 1 kayıt (commit)
  33. 30 Agu, 1994 1 kayıt (commit)
  34. 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
  35. 15 Nis, 1993 1 kayıt (commit)
  36. 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
  37. 05 Nis, 1992 1 kayıt (commit)