- 10 Feb, 2019 5 commits
-
-
Brock Mendel authored
update imports remove Options.create_context in favor of Context.from_options
-
Stefan Behnel authored
Avoid "__name__" hack in "Method" scanner action class and replace it with a simple "__repr__()" implementation.
-
Stefan Behnel authored
Make the "Method" scanner action a direct feature of the embedded Plex, instead of hacking it back into the Lexicon with a stray import. See GH-2831.
-
jbrockmendel authored
Resolve flake8 findings in Cython.Utils.
-
Stefan Behnel authored
Closes #2802.
-
- 09 Feb, 2019 16 commits
-
-
jbrockmendel authored
Remove unused code, mostly from Plex.
-
Stefan Behnel authored
Misc. typo fixes
-
luz.paz authored
Found via `codespell -q 3 -L uint,sinc,nd,byteorder,delimeter,delimeters,te,iff,splitted,highlightning,tripple,varius,includee,ist,ue,ba,defin,amin,ith,creat,minimise,crasher`
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
Add safety cast in queue tutorial code that avoids casting a potentially non-pointer-sized "int" to a "void*".
-
Stefan Behnel authored
-
Stefan Behnel authored
Silence an "unused" C compiler warning when we cannot easily decide whether to include the "__Pyx_Method_ClassMethod" utility code or not.
-
Stefan Behnel authored
Add safety parentheses in helper macro, also to avoid a compiler warning about tautological comparisons.
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
-
- 08 Feb, 2019 9 commits
-
-
Stefan Behnel authored
-
Stefan Behnel authored
-
jbrockmendel authored
implement setup.cfg, lint cleanup of Plex directory
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
Make the cpdef override check work with Python subclasses of extension types again that do not initialise their own dict. This lead to a crash with dict versioning in Py3.6+. Closes GH-2823.
-
Stefan Behnel authored
-
Stefan Behnel authored
Do not install test dependencies on CPython dev versions in travis as they are likely to fail in pre-releases.
-
Stefan Behnel authored
-
- 04 Feb, 2019 2 commits
-
-
Stefan Behnel authored
-
Stefan Behnel authored
-
- 03 Feb, 2019 8 commits
-
-
Stefan Behnel authored
Tighten grammar to disallow a mix of Py2 style octal literals with Py3 style underscores: "07" is still allowed, "0_7" is not and must be spelled "0o_7" and the like. Basically, you get either Py2 style legacy octals or Py3 style underscore literals, but you have to decide what you want.
-
Stefan Behnel authored
-
Stefan Behnel authored
-
Stefan Behnel authored
Only inject eval() locals/globals args when it's called as a builtin and not redefined e.g. in the module (found when updating test_grammar() and overriding it there).
-
Stefan Behnel authored
-
Stefan Behnel authored
When detecting an invalid system configuration for overflow checks, at least print a warning, instead of leaving a dangling live exception behind.
-
Stefan Behnel authored
-
Stefan Behnel authored
-