1. 08 Oct, 2019 1 commit
    • Pablo Galindo's avatar
      Explicitly initialize tp_print in Python 3.8 (GH-3171) · 00a1d4cb
      Pablo Galindo authored
      Explicitly initialize tp_print in Python 3.8
      
      When compiling cython-generated extension modules in Python3.8rc1
      this error is emitted by the compiler:
      
        _ext.cpp:8104:1: error: missing initializer for member ‘_typeobject::tp_print’ [-Werror=missing-field-initializers]
      
      The reason is that Python3.8 moved the tp_print slot (d917cfe4051) to
      the end of the _typeobject struct and reused the original position for
      tp_vectorcall_offset. The current generated code does not initialize the
      deprecated tp_print slot that was moved to the end of the struct.
      00a1d4cb
  2. 30 Sep, 2019 1 commit
    • da-woods's avatar
      unicode imports (#3119) · 074362b4
      da-woods authored
      * Handle normalization of unicode identifiers
      * Support unicode characters in module names
        (Only valid under Python 3)
      074362b4
  3. 18 Sep, 2019 1 commit
  4. 10 Sep, 2019 15 commits
  5. 06 Sep, 2019 5 commits
  6. 03 Sep, 2019 2 commits
  7. 02 Sep, 2019 2 commits
  8. 28 Aug, 2019 6 commits
  9. 27 Aug, 2019 6 commits
  10. 26 Aug, 2019 1 commit