1. 07 Haz, 2011 1 kayıt (commit)
  2. 19 Agu, 2010 3 kayıt (commit)
  3. 18 Agu, 2010 1 kayıt (commit)
  4. 09 May, 2010 4 kayıt (commit)
  5. 07 Tem, 2009 4 kayıt (commit)
  6. 02 Tem, 2008 2 kayıt (commit)
  7. 11 Haz, 2008 1 kayıt (commit)
  8. 09 Haz, 2008 1 kayıt (commit)
  9. 26 May, 2008 1 kayıt (commit)
  10. 30 Agu, 2007 1 kayıt (commit)
  11. 26 Agu, 2007 1 kayıt (commit)
  12. 27 Şub, 2006 1 kayıt (commit)
  13. 04 Şub, 2006 1 kayıt (commit)
  14. 19 Ock, 2006 1 kayıt (commit)
  15. 10 Tem, 2004 1 kayıt (commit)
  16. 04 Kas, 2002 1 kayıt (commit)
  17. 31 Mar, 2002 1 kayıt (commit)
    • Neal Norwitz's avatar
      Remove METH_OLDARGS: · ba3a16c6
      Neal Norwitz yazdı
        Convert METH_OLDARGS -> METH_VARARGS: also PyArg_Parse -> PyArg_ParseTuple
        Convert METH_OLDARGS -> METH_NOARGS: remove args parameter
      Please review.  All tests pass, but some modules don't have tests.
      I spot checked various functions to try to make sure nothing broke.
      ba3a16c6
  18. 17 Ock, 2002 1 kayıt (commit)
  19. 21 Ock, 2001 1 kayıt (commit)
  20. 22 Tem, 2000 1 kayıt (commit)
  21. 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
  22. 10 Tem, 2000 1 kayıt (commit)
  23. 09 Tem, 2000 1 kayıt (commit)
  24. 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
  25. 29 Şub, 2000 1 kayıt (commit)
    • Guido van Rossum's avatar
      Patch by Fred Gansevles (the module's original author). · 61b705a5
      Guido van Rossum yazdı
      This patch fixes 3 small problems.
      1) If a map is used which is generated with 'makedbm -a',
         the trailing '\0' is now handled correctely.
      2) The nis.maps() function skipped the first map in the output list.
      3) The library '-lnsl' is added in Setup.in (needed on Linux glibc2 and
         Solaris systems. Maybe on other systems too?)
      
      [I note that this still doesn't work when you are using NIS+ --GvR]
      61b705a5
  26. 08 Eki, 1998 1 kayıt (commit)
  27. 07 Eki, 1998 1 kayıt (commit)
  28. 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
  29. 09 Ock, 1997 1 kayıt (commit)
  30. 11 Ara, 1996 2 kayıt (commit)