1. 13 Şub, 2003 1 kayıt (commit)
  2. 11 Şub, 2003 1 kayıt (commit)
  3. 29 Ara, 2002 1 kayıt (commit)
  4. 14 Agu, 2002 1 kayıt (commit)
  5. 02 Agu, 2002 1 kayıt (commit)
  6. 17 Tem, 2002 2 kayıt (commit)
    • Tim Peters's avatar
    • Jeremy Hylton's avatar
      staticforward bites the dust. · 938ace69
      Jeremy Hylton yazdı
      The staticforward define was needed to support certain broken C
      compilers (notably SCO ODT 3.0, perhaps early AIX as well) botched the
      static keyword when it was used with a forward declaration of a static
      initialized structure.  Standard C allows the forward declaration with
      static, and we've decided to stop catering to broken C compilers.  (In
      fact, we expect that the compilers are all fixed eight years later.)
      
      I'm leaving staticforward and statichere defined in object.h as
      static.  This is only for backwards compatibility with C extensions
      that might still use it.
      
      XXX I haven't updated the documentation.
      938ace69
  7. 23 May, 2002 1 kayıt (commit)
  8. 09 Nis, 2002 1 kayıt (commit)
  9. 12 Mar, 2002 1 kayıt (commit)
  10. 08 Ara, 2001 1 kayıt (commit)
    • Guido van Rossum's avatar
      Patch supplied by Burton Radons for his own SF bug #487390: Modifying · 14648396
      Guido van Rossum yazdı
      type.__module__ behavior.
      
      This adds the module name and a dot in front of the type name in every
      type object initializer, except for built-in types (and those that
      already had this).  Note that it touches lots of Mac modules -- I have
      no way to test these but the changes look right.  Apologies if they're
      not.  This also touches the weakref docs, which contains a sample type
      object initializer.  It also touches the mmap test output, because the
      mmap type's repr is included in that output.  It touches object.h to
      put the correct description in a comment.
      14648396
  11. 15 Eki, 2001 1 kayıt (commit)
  12. 09 Eki, 2001 1 kayıt (commit)
  13. 01 Eyl, 2000 1 kayıt (commit)
  14. 19 Agu, 2000 1 kayıt (commit)
  15. 21 Tem, 2000 1 kayıt (commit)
    • Thomas Wouters's avatar
      Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)', · f3f33dcf
      Thomas Wouters yazdı
      and a couple of functions that were missed in the previous batches. Not
      terribly tested, but very carefully scrutinized, three times.
      
      All these were found by the little findkrc.py that I posted to python-dev,
      which means there might be more lurking. Cases such as this:
      
      long
      func(a, b)
      	long a;
      	long b; /* flagword */
      {
      
      and other cases where the last ; in the argument list isn't followed by a
      newline and an opening curly bracket. Regexps to catch all are welcome, of
      course ;)
      f3f33dcf
  16. 10 Tem, 2000 1 kayıt (commit)
  17. 30 Haz, 2000 2 kayıt (commit)
  18. 03 May, 2000 1 kayıt (commit)
    • Guido van Rossum's avatar
      Vladimir Marangozov's long-awaited malloc restructuring. · b18618da
      Guido van Rossum yazdı
      For more comments, read the patches@python.org archives.
      For documentation read the comments in mymalloc.h and objimpl.h.
      
      (This is not exactly what Vladimir posted to the patches list; I've
      made a few changes, and Vladimir sent me a fix in private email for a
      problem that only occurs in debug mode.  I'm also holding back on his
      change to main.c, which seems unnecessary to me.)
      b18618da
  19. 29 Şub, 2000 1 kayıt (commit)
  20. 16 Şub, 1999 1 kayıt (commit)
  21. 04 Ara, 1998 1 kayıt (commit)
  22. 09 Ara, 1997 1 kayıt (commit)
  23. 01 Eki, 1997 1 kayıt (commit)
    • Guido van Rossum's avatar
      Apply two changes, systematically: · 0cb96de2
      Guido van Rossum yazdı
      (1) Use PyErr_NewException("module.class", NULL, NULL) to create the
          exception object.
      
      (2) Remove all calls to Py_FatalError(); instead, return or
          ignore the errors -- the import code now checks PyErr_Occurred()
          after calling a module's init function, so it's no longer a
          fatal error for the initialization to fail.
      
      Also did some small cleanups, e.g. removed unnecessary test for
      "already initialized" from initfpectl(), and unified
      initposix()/initnt().
      
      I haven't checked this very thoroughly, so while the changes are
      pretty trivial -- beware of untested code!
      0cb96de2
  24. 13 Ara, 1996 1 kayıt (commit)
  25. 05 Ara, 1996 1 kayıt (commit)
  26. 25 Eki, 1996 1 kayıt (commit)
  27. 30 Tem, 1996 1 kayıt (commit)
  28. 18 Şub, 1995 1 kayıt (commit)
  29. 04 Ock, 1995 1 kayıt (commit)
  30. 29 Eyl, 1994 1 kayıt (commit)
  31. 02 Ock, 1994 1 kayıt (commit)
  32. 26 Ock, 1993 1 kayıt (commit)
    • Guido van Rossum's avatar
      * Added Fixcprt.py: script to fix copyright message. · 34679b76
      Guido van Rossum yazdı
      * various modules: added 1993 to copyright.
      * thread.c: added copyright notice.
      * ceval.c: minor change to error message for "+"
      * stdwinmodule.c: check for error from wfetchcolor
      * config.c: MS-DOS fixes (define PYTHONPATH, use DELIM, use osdefs.h)
      * Add declaration of inittab to import.h
      * sysmodule.c: added sys.builtin_module_names
      * xxmodule.c, xxobject.c: fix minor errors
      34679b76
  33. 04 Agu, 1992 1 kayıt (commit)
    • Guido van Rossum's avatar
      * Makefile adapted to changes below. · 1984f1e1
      Guido van Rossum yazdı
      * split pythonmain.c in two: most stuff goes to pythonrun.c, in the library.
      * new optional built-in threadmodule.c, build upon Sjoerd's thread.{c,h}.
      * new module from Sjoerd: mmmodule.c (dynamically loaded).
      * new module from Sjoerd: sv (svgen.py, svmodule.c.proto).
      * new files thread.{c,h} (from Sjoerd).
      * new xxmodule.c (example only).
      * myselect.h: bzero -> memset
      * select.c: bzero -> memset; removed global variable
      1984f1e1
  34. 15 May, 1992 1 kayıt (commit)
  35. 05 Nis, 1992 1 kayıt (commit)
  36. 19 Şub, 1991 1 kayıt (commit)
  37. 02 Kas, 1990 1 kayıt (commit)
  38. 14 Eki, 1990 1 kayıt (commit)