1. 07 Agu, 2004 1 kayıt (commit)
  2. 21 Mar, 2004 1 kayıt (commit)
  3. 12 Eki, 2003 1 kayıt (commit)
  4. 10 Eyl, 2003 1 kayıt (commit)
  5. 11 Şub, 2003 1 kayıt (commit)
  6. 18 Kas, 2002 1 kayıt (commit)
  7. 12 Kas, 2002 1 kayıt (commit)
  8. 24 Eyl, 2002 2 kayıt (commit)
  9. 28 Tem, 2002 1 kayıt (commit)
  10. 23 Tem, 2002 1 kayıt (commit)
  11. 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
  12. 13 Haz, 2002 1 kayıt (commit)
  13. 31 May, 2002 1 kayıt (commit)
  14. 01 Nis, 2002 1 kayıt (commit)
  15. 03 Mar, 2002 1 kayıt (commit)
  16. 12 Ock, 2002 1 kayıt (commit)
  17. 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
  18. 25 Eki, 2001 1 kayıt (commit)
  19. 24 Eki, 2001 1 kayıt (commit)
  20. 16 Agu, 2001 3 kayıt (commit)
  21. 19 Tem, 2001 1 kayıt (commit)
  22. 14 Tem, 2001 1 kayıt (commit)
    • Andrew M. Kuchling's avatar
      [Bug #438050] · 737fbb34
      Andrew M. Kuchling yazdı
         Include sys/poll.h if it was found by the configure script.  The OpenGroup
         spec says poll.h is the correct header file to use, so that file is
         preferred.
      737fbb34
  23. 21 May, 2001 1 kayıt (commit)
  24. 02 Mar, 2001 1 kayıt (commit)
  25. 12 Ara, 2000 1 kayıt (commit)
  26. 28 Eyl, 2000 1 kayıt (commit)
  27. 26 Eyl, 2000 1 kayıt (commit)
  28. 01 Eyl, 2000 1 kayıt (commit)
  29. 31 Agu, 2000 1 kayıt (commit)
  30. 25 Agu, 2000 2 kayıt (commit)
  31. 31 Tem, 2000 1 kayıt (commit)
  32. 22 Tem, 2000 2 kayıt (commit)
  33. 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
  34. 13 Tem, 2000 1 kayıt (commit)