1. 04 Mar, 2011 1 kayıt (commit)
  2. 23 Şub, 2011 1 kayıt (commit)
  3. 22 Şub, 2011 2 kayıt (commit)
  4. 03 Ara, 2010 1 kayıt (commit)
  5. 17 Kas, 2010 1 kayıt (commit)
  6. 17 Agu, 2010 1 kayıt (commit)
  7. 11 Haz, 2008 1 kayıt (commit)
  8. 19 Ara, 2007 1 kayıt (commit)
  9. 26 Agu, 2007 1 kayıt (commit)
  10. 21 Tem, 2007 1 kayıt (commit)
    • Martin v. Löwis's avatar
      Merged revisions 56467-56482 via svnmerge from · 9f2e3469
      Martin v. Löwis yazdı
      svn+ssh://pythondev@svn.python.org/python/branches/p3yk
      
      ................
        r56477 | martin.v.loewis | 2007-07-21 09:04:38 +0200 (Sa, 21 Jul 2007) | 11 lines
      
        Merged revisions 56466-56476 via svnmerge from
        svn+ssh://pythondev@svn.python.org/python/trunk
      
        ........
          r56476 | martin.v.loewis | 2007-07-21 08:55:02 +0200 (Sa, 21 Jul 2007) | 4 lines
      
          PEP 3123: Provide forward compatibility with Python 3.0, while keeping
          backwards compatibility. Add Py_Refcnt, Py_Type, Py_Size, and
          PyVarObject_HEAD_INIT.
        ........
      ................
        r56478 | martin.v.loewis | 2007-07-21 09:47:23 +0200 (Sa, 21 Jul 2007) | 2 lines
      
        PEP 3123: Use proper C inheritance for PyObject.
      ................
        r56479 | martin.v.loewis | 2007-07-21 10:06:55 +0200 (Sa, 21 Jul 2007) | 3 lines
      
        Add longintrepr.h to Python.h, so that the compiler can
        see that PyFalse is really some kind of PyObject*.
      ................
        r56480 | martin.v.loewis | 2007-07-21 10:47:18 +0200 (Sa, 21 Jul 2007) | 2 lines
      
        Qualify SHIFT, MASK, BASE.
      ................
        r56482 | martin.v.loewis | 2007-07-21 19:10:57 +0200 (Sa, 21 Jul 2007) | 2 lines
      
        Correctly refer to _ob_next.
      ................
      9f2e3469
  11. 10 Ara, 2005 1 kayıt (commit)
    • Jeremy Hylton's avatar
      Add const to several API functions that take char *. · af68c874
      Jeremy Hylton yazdı
      In C++, it's an error to pass a string literal to a char* function
      without a const_cast().  Rather than require every C++ extension
      module to put a cast around string literals, fix the API to state the
      const-ness.
      
      I focused on parts of the API where people usually pass literals:
      PyArg_ParseTuple() and friends, Py_BuildValue(), PyMethodDef, the type
      slots, etc.  Predictably, there were a large set of functions that
      needed to be fixed as a result of these changes.  The most pervasive
      change was to make the keyword args list passed to
      PyArg_ParseTupleAndKewords() to be a const char *kwlist[].
      
      One cast was required as a result of the changes:  A type object
      mallocs the memory for its tp_doc slot and later frees it.
      PyTypeObject says that tp_doc is const char *; but if the type was
      created by type_new(), we know it is safe to cast to char *.
      af68c874
  12. 12 Agu, 2002 1 kayıt (commit)
  13. 13 Eyl, 2001 1 kayıt (commit)
  14. 10 Eyl, 2001 1 kayıt (commit)
  15. 01 Eyl, 2000 1 kayıt (commit)
  16. 09 Tem, 2000 1 kayıt (commit)
  17. 30 Haz, 2000 2 kayıt (commit)
  18. 15 Şub, 1999 1 kayıt (commit)
  19. 04 Ara, 1998 1 kayıt (commit)
  20. 19 Şub, 1998 1 kayıt (commit)
    • Guido van Rossum's avatar
      Add internal routine _PyModule_Clear(), which does approximately what · f1dc0615
      Guido van Rossum yazdı
      clear_carefully() used to do in import.c.  Differences: leave only
      __builtins__ alone in the 2nd pass; and don't clear the dictionary (on
      the theory that as long as there are references left to the
      dictionary, those might be destructors that might expect __builtins__
      to be alive when they run; and __builtins__ can't normally be part of
      a cycle).
      f1dc0615
  21. 25 Eki, 1996 1 kayıt (commit)
  22. 27 Şub, 1995 1 kayıt (commit)
  23. 12 Ock, 1995 1 kayıt (commit)
  24. 04 Ock, 1995 1 kayıt (commit)
    • Guido van Rossum's avatar
      Added 1995 copyright. · 5799b520
      Guido van Rossum yazdı
      object.h: made sizes and refcnts signed ints.
      stringobject.h: make getstrsize() signed int.
      methodobject.h: add METH_VARARGS and METH_FREENAME flag bit definitions.
      5799b520
  25. 18 Agu, 1994 1 kayıt (commit)
  26. 01 Agu, 1994 1 kayıt (commit)
  27. 28 Tem, 1993 1 kayıt (commit)
    • Guido van Rossum's avatar
      * Added support for X11 modules. · a3309960
      Guido van Rossum yazdı
      * Makefile: change location of FORMS library.
      * posixmodule.c: turn #if 0 into #ifdef MSDOS (stuff in unistd.h or not)
      * Almost all .h files: added CPP magic to avoid duplicate inclusions and
        to support inclusion from C++.
      a3309960
  28. 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
  29. 05 Nis, 1992 1 kayıt (commit)
  30. 19 Şub, 1991 1 kayıt (commit)
  31. 20 Ara, 1990 1 kayıt (commit)
  32. 26 Eki, 1990 1 kayıt (commit)
  33. 14 Eki, 1990 1 kayıt (commit)