1. 12 May, 2019 4 kayıt (commit)
  2. 06 Nis, 2019 1 kayıt (commit)
  3. 30 Mar, 2019 2 kayıt (commit)
  4. 26 Mar, 2019 1 kayıt (commit)
  5. 22 Mar, 2019 2 kayıt (commit)
    • Chris Rink's avatar
      Handle new ast.Constant node in SourceGenerator (#121) · 64139033
      Chris Rink yazdı
      Fixes #120
      64139033
    • Felix Yan's avatar
      Fix string parsing with newline (#123) · c72349f3
      Felix Yan yazdı
      When looping over a joined str, if a node is ast.Str and the value is
      just a newline "\n", the write() function adds an additional indentation
      after it, which fails to represent the original string. By calling
      self.result.append() here directly the issue is resolved.
      
      The added test could show the issue. With code_gen unmodifed, it fails
      with the following error:
      
      ```
      AssertionError: "if 1:\n    x = f'{host}\\n\\t{port}\\n    '" != "if
      1:\n    x = f'{host}\\n\\t{port}\\n'"
        if 1:
            -     x = f'{host}\n\t{port}\n    '?
            ----
            +     x = f'{host}\n\t{port}\n'
      ```
      
      Which is exactly the problem.
      
      This fixes parsing issues with many of Python 3.7's stdlib. Namely the
      following ones:
      
      /usr/lib/python3.7/warnings.py
      /usr/lib/python3.7/netrc.py
      /usr/lib/python3.7/test/test_embed.py
      /usr/lib/python3.7/test/support/testresult.py
      /usr/lib/python3.7/idlelib/grep.py
      
      Fixes #119
      c72349f3
  6. 14 Mar, 2019 2 kayıt (commit)
  7. 02 Agu, 2018 1 kayıt (commit)
  8. 06 Tem, 2018 5 kayıt (commit)
  9. 05 Tem, 2018 2 kayıt (commit)
  10. 22 Haz, 2018 1 kayıt (commit)
  11. 05 Haz, 2018 1 kayıt (commit)
    • Kodi Arfer's avatar
      Revert Python 3.7 docstring handling (#107) · 991e6e94
      Kodi Arfer yazdı
      Travis CI has outdated version of Python 3.7.0, so '3.7-dev'
      was removed for now.
      
      This was tested against CPython commit 1d419faccdaae27d968cef1e1ece6b9374694573.
      
      Closes #106
      991e6e94
  12. 18 May, 2018 2 kayıt (commit)
  13. 15 May, 2018 2 kayıt (commit)
  14. 07 May, 2018 1 kayıt (commit)
  15. 06 Nis, 2018 2 kayıt (commit)
  16. 24 Mar, 2018 1 kayıt (commit)
  17. 23 Mar, 2018 2 kayıt (commit)
  18. 19 Mar, 2018 1 kayıt (commit)
  19. 22 Kas, 2017 1 kayıt (commit)
  20. 11 Kas, 2017 3 kayıt (commit)
  21. 10 Kas, 2017 3 kayıt (commit)