1. 05 Ock, 2002 1 kayıt (commit)
  2. 20 Eki, 2001 1 kayıt (commit)
  3. 17 Tem, 2001 1 kayıt (commit)
    • Guido van Rossum's avatar
      Add a really stupid warning about 'yield' used as an identifier. · da62ecc9
      Guido van Rossum yazdı
      This is really stupid because it cannot be suppressed or altered using
      the warning framework; that's because the warning framework is built
      on Python interpreter internals, and the parser generator doesn't have
      access to any of those (you cannot use anything of type PyObject * in
      the parser).
      
      But it's better than nothing, and implementing a proper check for this
      appears to require modifying compile.c in a dozen places, for which I
      don't have the stamina today.  I promise we'll do better in 2.2a2.
      
      At least it tells you the filename and line number (unlike the first
      hack I considered :-).
      da62ecc9
  4. 16 Tem, 2001 1 kayıt (commit)
    • Tim Peters's avatar
      Ugly. A pile of new xxxFlags() functions, to communicate to the parser · fe2127d3
      Tim Peters yazdı
      that 'yield' is a keyword.  This doesn't help test_generators at all!  I
      don't know why not.  These things do work now (and didn't before this
      patch):
      
      1. "from __future__ import generators" now works in a native shell.
      
      2. Similarly "python -i xxx.py" now has generators enabled in the
         shell if xxx.py had them enabled.
      
      3. This program (which was my doctest proxy) works fine:
      
      from __future__ import generators
      
      source = """\
      def f():
          yield 1
      """
      
      exec compile(source, "", "single") in globals()
      print type(f())
      fe2127d3
  5. 01 Eyl, 2000 1 kayıt (commit)
  6. 18 Agu, 2000 1 kayıt (commit)
  7. 22 Tem, 2000 1 kayıt (commit)
    • Thomas Wouters's avatar
      Mass ANSIfication. · 23c9e002
      Thomas Wouters yazdı
      Work around intrcheck.c's desire to pass 'PyErr_CheckSignals' to
      'Py_AddPendingCall' by providing a (static) wrapper function that has the
      right number of arguments.
      23c9e002
  8. 11 Tem, 2000 1 kayıt (commit)
  9. 09 Tem, 2000 1 kayıt (commit)
  10. 30 Haz, 2000 2 kayıt (commit)
  11. 28 Haz, 2000 2 kayıt (commit)
  12. 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
  13. 21 Ara, 1998 1 kayıt (commit)
  14. 10 Nis, 1998 1 kayıt (commit)
  15. 27 Tem, 1997 1 kayıt (commit)
  16. 29 Nis, 1997 1 kayıt (commit)
  17. 25 Eki, 1996 1 kayıt (commit)
  18. 20 Ock, 1995 1 kayıt (commit)
  19. 04 Ock, 1995 1 kayıt (commit)
  20. 29 Agu, 1994 1 kayıt (commit)
  21. 16 Mar, 1993 1 kayıt (commit)
    • Guido van Rossum's avatar
      * Changed many files to use mkvalue() instead of newtupleobject(). · e537240c
      Guido van Rossum yazdı
      * Fixcprt.py: added [-y file] option, do only files younger than file.
      * modsupport.[ch]: added vmkvalue().
      * intobject.c: use mkvalue().
      * stringobject.c: added "formatstring"; renamed string* to string_*;
        ceval.c: call formatstring for string % value.
      * longobject.c: close memory leak in divmod.
      * parsetok.c: set result node to NULL when returning an error.
      e537240c
  22. 05 Nis, 1992 1 kayıt (commit)
  23. 25 Mar, 1992 1 kayıt (commit)
  24. 04 Mar, 1992 1 kayıt (commit)
  25. 07 Haz, 1991 1 kayıt (commit)
  26. 03 Haz, 1991 1 kayıt (commit)
  27. 19 Şub, 1991 1 kayıt (commit)
  28. 20 Ara, 1990 1 kayıt (commit)
  29. 18 Kas, 1990 1 kayıt (commit)
  30. 14 Eki, 1990 1 kayıt (commit)