1. 16 Oct, 2019 2 commits
    • Matthew Edwards's avatar
      Add most non-modifying sequence operations to libcpp.algorithm (GH-3179) · 059c2b0d
      Matthew Edwards authored
      * Rearrange libcpp.algorithm to match cppreference and reformat
      * Add all_of, any_of and none_of to libcpp.algorithm
      * Add count and count_if to libcpp.algorithm
      * Add string(first, last) constructor to libcpp.string
      * Add the simplest overload of mismatch to libcpp.algorithm
      * Add find, find_if, and find_if_not to libcpp.algorithm
      * Add find_end to libcpp.algorithm and distance to libcpp.iterator
      * Add find_first_of to libcpp.algorithm
      * Add adjacent_find to libcpp.algorithm
      * Add search to libcpp.algorithm
      * Add search_n to libcpp.algorithm
      * Add exception specifiers in libcpp.algorithm
      * Add predicated overload of find_end, search and search_n to libcpp.algorithm
      059c2b0d
    • alex-xnor's avatar
  2. 14 Oct, 2019 4 commits
  3. 08 Oct, 2019 6 commits
  4. 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
  5. 18 Sep, 2019 1 commit
  6. 10 Sep, 2019 16 commits
  7. 06 Sep, 2019 5 commits
  8. 03 Sep, 2019 2 commits
  9. 02 Sep, 2019 2 commits
  10. 28 Aug, 2019 1 commit
    • Gerion Entrup's avatar
      Utility/CppConvert: fix Cython warning (GH-3108) · 00c1dc96
      Gerion Entrup authored
      When compiling to C++ code and using automatic conversion from Python
      str to C++ string, Cython inserts this function template but generates the warning:
      warning: string.from_py:15:63: local variable 'length' might be referenced before assignment
      00c1dc96