1. 18 Apr, 2020 2 commits
  2. 26 Oct, 2019 1 commit
  3. 24 Oct, 2019 2 commits
    • da-woods's avatar
      Bring attribute.fused types in line · 073f25c1
      da-woods authored
      073f25c1
    • da-woods's avatar
      Potential fix for GH issue #3203 · 1b5b0a51
      da-woods authored
      Gets the specialized type if possible from
      NameNode.analyse_as_type
      
      This does introduce a potential new bug:
      ```
      cimport cython
      
      just_float = cython.fused_type(float)
      
      cdef OK1(just_float x):
          return just_float in floating
      
      cdef fail1(just_float x, floating y):
          return just_float in floating
      
      cdef fail2(floating x):
          return floating in floating
      
      def show():
          """
          >>> show()
          True
          True
          True
          True
          """
          print(OK1(1.0))
          print(fail1(1.0, 2.0))
          print(fail1[float, double](1.0, 2.0))
          print(fail2[float](1.0))
      ```
      fail1 and fail2 work before this patch but fail with it. It isn't
      clear to me if this should actually be considered a bug. It
      works in both versions with `cython.floating`, which possibly
      suggests analyse_as_type in AttributeNode should also be changed
      1b5b0a51
  4. 16 Oct, 2019 4 commits
  5. 14 Oct, 2019 4 commits
  6. 08 Oct, 2019 6 commits
  7. 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
  8. 18 Sep, 2019 1 commit
  9. 10 Sep, 2019 16 commits
  10. 06 Sep, 2019 3 commits