summaryrefslogtreecommitdiff
path: root/Cython
Commit message (Expand)AuthorAgeFilesLines
* Fix compilation of "ParseTreeTransforms" in Py2. It previously tried to compa...ci_compile_allStefan Behnel2021-07-262-1/+3
* Fix some imports.Stefan Behnel2021-07-261-1/+2
* Add missing attribute declaration for FunctionState class.Stefan Behnel2021-07-261-0/+1
* Fix type declaration in parser.Stefan Behnel2021-07-261-2/+2
* Make __PYX_WARN_IF_INIT_CALLED name unique per-module in generated header fil...da-woods2021-07-231-3/+3
* Support arbitrary mappings in C++ dict-to-map conversion, not just exact dicts.Stefan Behnel2021-07-221-3/+7
* Prepare release of 3.0.0a93.0.0a9Stefan Behnel2021-07-201-1/+1
* Explicitly return None from a method that is expected to return something oth...Stefan Behnel2021-07-201-0/+1
* Refactor function to make it less verbose and simpler to change: error cases ...Stefan Behnel2021-07-201-12/+7
* Make code more readable by changing the order of a condition and moving the s...Stefan Behnel2021-07-201-45/+45
* Prevent C++ coercions from picking up user-set directives (GH-4206)da-woods2021-07-202-5/+24
* Merge pull request #4186 from amol-/cygdb-optional-interpreterRobert Bradshaw2021-07-191-22/+38
|\
| * Add --skip-interpreter optionAlessandro Molina2021-05-211-22/+38
* | Resolve some issues with "cpp_locals" (GH-4265)da-woods2021-07-195-14/+34
* | Rename GeneratorExpressionScope to ComprehensionScope (GH-4275)da-woods2021-07-192-9/+9
* | Add missing multiset class to the standard library bindings (GH-4273)da-woods2021-07-192-10/+119
* | Add missing "max_element()" in libcpp.algorithms (GH-4271)da-woods2021-07-181-0/+2
* | Fix and enforce a couple of code formatting issues.Stefan Behnel2021-07-181-1/+1
* | Set the "is_target" attribute for names, attributes and temps (anything name-...Stefan Behnel2021-07-131-2/+3
* | Avoid going through an attribute assignment for an intermediate node result s...Stefan Behnel2021-07-131-2/+2
* | Fix: overwrite target node after analysis.Stefan Behnel2021-07-132-3/+3
* | Merge branch '0.29.x'Stefan Behnel2021-07-131-5/+10
|\ \
| * | Fix "std::string::npos" in 'libcpp.string' and add missing C++ string methods...Janek Bevendorff2021-07-131-77/+146
| * | Stop calling PyEval_InitThreads() In Py3.7+ (where it has become a no-op).Stefan Behnel2021-07-012-4/+3
| * | Backport #2811 to fix qualified-name issues (GH-4216)da-woods2021-06-091-0/+6
* | | Fix "std::string::npos" in 'libcpp.string' and add missing C++ string methods...Janek Bevendorff2021-07-131-80/+116
* | | Remove accidentally duplicated test code.Stefan Behnel2021-07-101-1/+0
* | | Clean up test and add one for writing dedented text in tests.Stefan Behnel2021-07-031-3/+17
* | | Fix test in Py2.Stefan Behnel2021-07-031-1/+4
* | | Extend somment.Stefan Behnel2021-07-031-1/+1
* | | Add some test helper functions to create (source) files from tests.Stefan Behnel2021-07-032-0/+82
* | | Fix a refcounting bug in the new @total_ordering decorator.Stefan Behnel2021-07-031-2/+2
* | | Prepare release of 3.0.0a8.3.0.0a8Stefan Behnel2021-07-021-1/+1
* | | Declare a static method as @staticmethod.Stefan Behnel2021-07-021-1/+2
* | | Fix infinite recursion in binops code (GH-4204)da-woods2021-07-022-4/+7
* | | Error message on cpdef variables (GH-3963)da-woods2021-07-021-2/+1
* | | Rename Shadow.optimization -> Shadow.optimize (GH-4258)da-woods2021-07-021-3/+3
* | | Fix a few bugs in the new "cpp_locals" directive implementation (GH-4259)da-woods2021-07-024-7/+18
* | | Fix call to run_distutils() in debugger test (GH-4256)Matti Picus2021-06-301-2/+3
* | | Use 3-part version numbers also for 3.0, i.e. 3.0.0, as we did for previous r...Stefan Behnel2021-06-301-1/+1
* | | Add directive "cpp_locals" to handle C++ variables using std::optional (GH-4225)da-woods2021-06-2912-36/+199
* | | Move some utility code from ExprNodes.py into utility code files.Stefan Behnel2021-06-294-84/+71
* | | Make cythonize recompile .py files when their override .pxd file has changed ...Golden Rockefeller2021-06-282-5/+218
* | | Add missing argument when instantiating a test class. The argument was added ...Stefan Behnel2021-06-281-0/+1
* | | Set "is_cython_module" on annotations correctly (GH-4248)da-woods2021-06-281-0/+7
* | | Don't let Py-class annotations set a type (GH-4199)da-woods2021-06-221-0/+3
* | | Fix "except+*" exception handling (GH-4013)da-woods2021-06-172-9/+29
* | | Fix conversion from DictNode to std::map (GH-4231)da-woods2021-06-171-2/+1
* | | Optimise "[...] * N" where N is a non-literal C integer value. (GH-4233)scoder2021-06-171-5/+27
* | | Restore old PyEval_EvalCode() signature for older versions of PyPy (GH-4236)Matti Picus2021-06-171-1/+1