1. 18 1月, 2019 3 次提交
  2. 16 1月, 2019 1 次提交
  3. 15 1月, 2019 6 次提交
  4. 12 1月, 2019 1 次提交
  5. 09 1月, 2019 3 次提交
  6. 05 1月, 2019 1 次提交
  7. 04 1月, 2019 2 次提交
  8. 31 12月, 2018 2 次提交
    • C
      CircleCI: Test for Python 3 syntax errors and undefined names (#1522) · 26c5b54f
      cclauss 提交于
      Catch missing imports and errors like #1520 and #1521
      
      __E901,E999,F821,F822,F823__ are the "_showstopper_" [flake8](http://flake8.pycqa.org) issues that can halt the runtime with a SyntaxError, NameError, etc. Most other flake8 issues are merely "style violations" -- useful for readability but they do not effect runtime safety.
      * F821: undefined name `name`
      * F822: undefined name `name` in `__all__`
      * F823: local variable name referenced before assignment
      * E901: SyntaxError or IndentationError
      * E999: SyntaxError -- failed to compile a file into an Abstract Syntax Tree
      26c5b54f
    • B
      Fix automake warnings · 686e6f2e
      Behdad Esfahbod 提交于
      [skip ci]
      686e6f2e
  9. 30 12月, 2018 5 次提交
  10. 28 12月, 2018 7 次提交
  11. 25 12月, 2018 1 次提交
  12. 24 12月, 2018 5 次提交
  13. 23 12月, 2018 2 次提交
  14. 22 12月, 2018 1 次提交
    • M
      CFF renaming (#1507) · 29f0b6bc
      Michiharu Ariza 提交于
      * reimplement ByteStr as byte_str_t based on hb_ubytes_t
      
      Unuse start_embed<ByteStr>
      Also renamed SubByteStr to byte_str_ref_t
      More renaming to come
      
      * substr renamed to str_ref in line with its type byte_str_ref_t
      
      * uncamelize non-table struct names
      
      * uncamelized non-struct types OpCode etc
      
      * add byte_str_t copy ctor
      
      * test
      
      * test2
      
      * undo tests
      
      * fix bot failure
      
      * undo the previous change
      
      * fixed tabs, added inline
      
      * Revert "fixed tabs, added inline"
      
      This reverts commit 21163c30e9d18759414f7fe2518628241599f039.
      
      * fix tabs
      29f0b6bc