1. 28 Kas, 2017 1 kayıt (commit)
  2. 19 Eki, 2013 1 kayıt (commit)
  3. 26 Agu, 2013 1 kayıt (commit)
  4. 04 Nis, 2011 1 kayıt (commit)
  5. 27 Ara, 2010 1 kayıt (commit)
  6. 03 Ara, 2010 1 kayıt (commit)
  7. 01 Nis, 2009 1 kayıt (commit)
  8. 02 Mar, 2009 1 kayıt (commit)
  9. 26 Mar, 2008 2 kayıt (commit)
    • Christian Heimes's avatar
      Merged revisions 61952-61953 via svnmerge from · 4d6ec85a
      Christian Heimes yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r61952 | mark.dickinson | 2008-03-26 22:41:36 +0100 (Wed, 26 Mar 2008) | 2 lines
      
        Typo: "objects reference count" -> "object's reference count"
      ........
        r61953 | christian.heimes | 2008-03-26 23:01:37 +0100 (Wed, 26 Mar 2008) | 4 lines
      
        Patch #2477: Added from __future__ import unicode_literals
      
        The new PyParser_*Ex() functions are based on Neal's suggestion and initial patch. The new __future__ feature makes all '' and r'' unicode strings. b'' and br'' stay (byte) strings.
      ........
      4d6ec85a
    • Christian Heimes's avatar
      Patch #2477: Added from __future__ import unicode_literals · 3c60833e
      Christian Heimes yazdı
      The new PyParser_*Ex() functions are based on Neal's suggestion and initial patch. The new __future__ feature makes all '' and r'' unicode strings. b'' and br'' stay (byte) strings.
      3c60833e
  10. 18 Mar, 2008 1 kayıt (commit)
    • Eric Smith's avatar
      Backport of the print function, using a __future__ import. · 7c47894a
      Eric Smith yazdı
      This work is substantially Anthony Baxter's, from issue
      1633807.  I just freshened it, made a few minor tweaks,
      and added the test cases.  I also created issue 2412,
      which is to check for 2to3's behavior with the print
      function.  I also added myself to ACKS.
      7c47894a
  11. 04 Eyl, 2007 1 kayıt (commit)
  12. 06 Eyl, 2006 1 kayıt (commit)
  13. 15 Mar, 2006 1 kayıt (commit)
  14. 28 Şub, 2006 1 kayıt (commit)
  15. 17 Nis, 2003 1 kayıt (commit)
  16. 13 Şub, 2003 1 kayıt (commit)
    • Guido van Rossum's avatar
      - Finally fixed the bug in compile() and exec where a string ending · 4b499dd3
      Guido van Rossum yazdı
        with an indented code block but no newline would raise SyntaxError.
        This would have been a four-line change in parsetok.c...  Except
        codeop.py depends on this behavior, so a compilation flag had to be
        invented that causes the tokenizer to revert to the old behavior;
        this required extra changes to 2 .h files, 2 .c files, and 2 .py
        files.  (Fixes SF bug #501622.)
      4b499dd3
  17. 11 Ara, 2002 1 kayıt (commit)
  18. 12 Agu, 2002 1 kayıt (commit)
  19. 09 Tem, 2002 1 kayıt (commit)
  20. 22 Mar, 2002 1 kayıt (commit)
  21. 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
  22. 01 Eyl, 2000 1 kayıt (commit)
  23. 11 Tem, 2000 1 kayıt (commit)
  24. 08 Tem, 2000 1 kayıt (commit)
  25. 30 Haz, 2000 2 kayıt (commit)
  26. 04 Ara, 1998 1 kayıt (commit)
  27. 25 Eki, 1996 1 kayıt (commit)
  28. 12 Ock, 1995 1 kayıt (commit)
  29. 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
  30. 01 Agu, 1994 1 kayıt (commit)
  31. 20 Ara, 1993 1 kayıt (commit)
  32. 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
  33. 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
  34. 05 Nis, 1992 1 kayıt (commit)
  35. 19 Şub, 1991 1 kayıt (commit)
  36. 20 Ara, 1990 1 kayıt (commit)
  37. 14 Eki, 1990 1 kayıt (commit)