summaryrefslogtreecommitdiff
path: root/tests/errors
Commit message (Expand)AuthorAgeFilesLines
* Merge branch '0.29.x'Stefan Behnel2018-10-301-0/+20
|\
| * 2685_warn_undeclared: add test for warn.undeclared.Nicolas Pauss2018-10-301-0/+20
* | Merge pull request #2684 from fkohlgrueber/func_decorator_co_firstlineno_fixStefan Behnel2018-10-304-7/+7
|\ \
| * | fix line numbers in other tests (2)Felix Kohlgrüber2018-10-281-1/+1
| * | fix line numbers in other testsFelix Kohlgrüber2018-10-273-6/+6
| |/
* | Remove support for Py2.6 and various quirks that special-cased it.gh2692_remove_py26_supportStefan Behnel2018-10-301-4/+0
|/
* Generally allow the "nogil" decorator and context manager to accept boolean a...Stefan Behnel2018-09-141-4/+25
* Support "@cython.nogil" decorator in pure mode.Stefan Behnel2018-09-141-0/+36
* Improve error message for mixing return type declarations into def function s...Stefan Behnel2018-08-151-0/+5
* Give a better parser error message when defining cdef modifiers on def functi...Stefan Behnel2018-08-152-8/+22
* Give a better parser error message when defining return type annotations on c...Stefan Behnel2018-08-151-0/+13
* Make raise-statements inside of nogil blocks automatically acquire the GIL, i...Stefan Behnel2018-06-031-2/+1
* Misc typosluz.paz2018-03-121-1/+1
* Always show original position on "redeclared" errors.Stefan Behnel2018-03-111-0/+2
* Repair the coercion of C string literals to C++ strings for function argument...Stefan Behnel2018-03-091-1/+1
* Avoid side-effects of auto-pickling in error test.Stefan Behnel2018-02-151-2/+3
* Re-allow None as argument in "parallel(num_threads=None)", seems to be explic...Stefan Behnel2017-11-292-8/+11
* Make assignments of None to C typed variables a compile time error.Stefan Behnel2017-11-281-0/+6
* Merge pull request #1927 from robertwb/multi-inheritanceRobert Bradshaw2017-11-082-4/+4
|\
| * Fix some error messages.Robert Bradshaw2017-10-111-3/+3
| * Allow multiple bases for cdef classes.Robert Bradshaw2017-10-111-1/+1
* | Require GIL-holding constructor if base classes require GIL.Robert Bradshaw2017-11-071-0/+20
|/
* Turn compiler assertion into an error since it's triggered by user code.Stefan Behnel2017-10-031-0/+5
* Allow mismatches of broader exception declarations in .pxd signatures as long...Stefan Behnel2017-09-212-13/+68
* Fix more tests: Correct the source character position of name nodes to improv...Stefan Behnel2017-08-172-5/+5
* Correct the source character position of name nodes to improve error reportin...Stefan Behnel2017-08-1743-212/+223
* Provide a better error message when users accidentally write Cython code in a...Stefan Behnel2017-08-171-0/+9
* Merge pull request #1802 from scoder/_pep525_async_genscoder2017-08-095-48/+2
|\
| * delete outdated syntax testsStefan Behnel2017-08-052-37/+0
| * generalise error message that disallows 'yield'/'await'/etc. inside of parall...Stefan Behnel2017-07-291-2/+2
| * temporary hack to make test work until we get async comprehensionsStefan Behnel2017-07-291-0/+2
| * continue to disallow "yield from" in async functionsStefan Behnel2017-07-291-1/+0
| * allow yield in async def functions (which turns them into async generators)Stefan Behnel2017-07-271-10/+0
* | improve error message when trying to take address of Python variable/expressi...Stefan Behnel2017-08-021-0/+29
|/
* Make bad pxd declarations into an warning for now.Robert Bradshaw2017-07-031-4/+5
* Allow undeclared narrower return for cdef methods.Robert Bradshaw2017-06-192-0/+8
* Allow cimport to follow import.Robert Bradshaw2017-06-161-1/+7
* Mention class name in error messagesJeroen Demeyer2017-06-151-2/+2
* Add missing pxd file for test.Robert Bradshaw2017-06-141-0/+8
* Ensure signature extensions reflected in the pxd if needed.Robert Bradshaw2017-06-141-0/+25
* Remove redundant test.Robert Bradshaw2017-06-141-13/+0
* Repair syntax test after fixing github issue #1726, which also made "continue...Stefan Behnel2017-06-041-1/+3
* Make "break" outside of loops a syntax error also inside of try-except blocks.Stefan Behnel2017-06-041-0/+21
* Test for bad cimported module attributes.Robert Bradshaw2017-06-011-0/+25
* Don't error out when non-const value is passed as a const specifiedIan Henriksen2016-03-031-1/+1
* Don’t crash when a C class isn’t defined in the pxd.Emmanuel Gil Peyrot2015-12-092-0/+11
* reject properties with additional decorators in cdef classesStefan Behnel2015-11-071-0/+42
* fix compiler crash due to uninitialised attributeStefan Behnel2015-07-281-0/+14
* check that cython does not automatically convert from native type to an objec...shai2015-07-251-0/+23
* add error test for 'await' in generator expressionsStefan Behnel2015-06-291-0/+26