1. 02 Jul, 2010 5 commits
  2. 01 Jul, 2010 5 commits
  3. 30 Jun, 2010 12 commits
  4. 29 Jun, 2010 14 commits
  5. 28 Jun, 2010 4 commits
    • Mark Dickinson's avatar
      unparse.py: Typo fix. · 3d1bfbf9
      Mark Dickinson authored
      3d1bfbf9
    • Mark Dickinson's avatar
      Update Demo/parser/unparse.py to current Python 3.x syntax. Additions: · fa2e4e9d
      Mark Dickinson authored
       - relative imports
       - keyword-only arguments
       - function annotations
       - class decorators
       - raise ... from ...
       - except ... as ...
       - nonlocal
       - bytes literals
       - set literals
       - set comprehensions
       - dict comprehensions
      Removals:
       - print statement.
      
      Some of this should be backported to 2.x.
      fa2e4e9d
    • Mark Dickinson's avatar
      Merged revisions 82345 via svnmerge from · f5451e54
      Mark Dickinson authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r82345 | mark.dickinson | 2010-06-28 20:54:19 +0100 (Mon, 28 Jun 2010) | 1 line
      
        unparse.py:  fix mispaced parentheses in chained comparisons
      ........
      f5451e54
    • Mark Dickinson's avatar
      Merged revisions 82338,82340-82341 via svnmerge from · ae100053
      Mark Dickinson authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r82338 | mark.dickinson | 2010-06-28 20:31:41 +0100 (Mon, 28 Jun 2010) | 9 lines
      
        Fix some shallow bugs in Demo/parser/unparse.py, and add tests:
      
          - insert commas between entries in del statement
          - left and right shifts were represented as >> and << (respectively); reverse
          - unindent properly after for: else:  or while: else:
          - add parens around the result of an unary operation
          - add parens around negative numbers, to avoid turning (-1)**2 into -1**2.
      ........
        r82340 | mark.dickinson | 2010-06-28 20:34:15 +0100 (Mon, 28 Jun 2010) | 1 line
      
        Fix typo in test_unparse.py.
      ........
        r82341 | mark.dickinson | 2010-06-28 20:38:19 +0100 (Mon, 28 Jun 2010) | 1 line
      
        Set svn:eol-style on test_unparse.py.
      ........
      ae100053