summaryrefslogtreecommitdiff
BranchCommit messageAuthorAge
0.17Merge pull request #173 from yarikoptic/upstream-0.17Robert Bradshaw11 years
0.18.xremove warning about missing 'const' support from docs and fix advice on decl...Stefan Behnel11 years
0.19.xfix C compiler warning about unused expression resultStefan Behnel10 years
0.20.xminor doc clarificationStefan Behnel10 years
0.21.xAdded tag 0.21.2 for changeset ab1a3afb8775Stefan Behnel9 years
0.22.xreformat some codeStefan Behnel9 years
0.23.xrst fixStefan Behnel8 years
0.24.xchangelogStefan Behnel8 years
0.25.xinclude Python 3.6 in appveyor buildStefan Behnel7 years
0.27.xRepair "__richcmp__" generation for special comparison methods with docstrings.Stefan Behnel6 years
0.28.xPrepare release of 0.28.6.Stefan Behnel5 years
0.29.xDisable fast Py_SIZE(PyLong) check in Py3.12a7+ since it's no longer valid th...Stefan Behnel11 months
cgetter_rewriteTest fix: avoid depending on whether "nd.shape" requires the GIL or not.Stefan Behnel4 years
ci_compile_allFix compilation of "ParseTreeTransforms" in Py2. It previously tried to compa...Stefan Behnel3 years
clean_up_capi_featuresTry to avoid C compiler warnings about unused utility functions, but only if ...Stefan Behnel3 years
cy3strRemove the new 'str_is_str' directive again and replace it by a new "language...Stefan Behnel6 years
dalcinl-embedsignaturetest: Add tests for embedsignature with function annotationsLisandro Dalcin7 years
dalcinl/fix-c-used-variableFix unused variable warnings from C/C++ compilers in generated codeLisandro Dalcin4 years
dalcinl/fix-c-warningFix GCC -Wsign-conversion warningLisandro Dalcin2 years
dalcinl/fix-cpdef-warningFix cpdef methods to not emit redeclared warning (see #1874)Lisandro Dalcin6 years
dalcinl/fix-getbufferUpdate implementation of PEP 3118 getbuffer special methodLisandro Dalcin6 years
dalcinl/fix-module-cleanupPyPy3: Register module cleanup with atexit (PyModuleDef.m_free is not used)Lisandro Dalcin7 years
dalcinl/fix-releaseCyFunction: Fix use of `offsetof()` to silence clang -Wextended-offsetofLisandro Dalcin7 years
dalcinl/fix-travisTravis-CI: Rework config file and do not test debugger on PyPyLisandro Dalcin6 years
dalcinl/fix-try-finallyMinor changes to try/finally code generation [should silence Coverity Scan]Lisandro Dalcin7 years
dalcinl/mark-unused-varsMark unused vars with `(void)x;` [should silence Coverity Scan]Lisandro Dalcin7 years
dalcinl/no-old-pythonRemove conditional compilation handling old Python < 2.6Lisandro Dalcin10 years
dalcinl/numpyModernize NumPy pxdLisandro Dalcin7 years
dropPy32Also update version check in Main.py.Stefan Behnel7 years
enable_limited_api_file_testsEnable file tests with the limited API test jobs to see what failures there are.Stefan Behnel12 months
faster_absolute_reimportsExclude an unused helper function in Py2.Stefan Behnel5 years
faster_pymultiplySpeed up multiplication of Python numbers with small integers (<= 2**30).Stefan Behnel5 years
fix-pypy3PyPy3: PyNumberMethods struct still has legacy Py2 CAPI slotsLisandro Dalcin9 years
fix_build_extInstead of overriding "build_ext.build_extensions()" in "old_build_ext", whic...Stefan Behnel4 years
fix_gh3246Fix temp variable handling for the super() class cell.Stefan Behnel4 years
fix_srctree_tests_on_windowsTry to fix cython.inline() on Windows with Py3.8+ where the DLL loading requi...Stefan Behnel4 years
fixed_code_objectscorrectly tie one PyCodeObject instance to one function to allow for proper t...Stefan Behnel8 years
full_code_writerMake CodeWriter inherit from ExpressionWriter in order to support all kinds o...Stefan Behnel4 years
gh1461_cover_sig_lineGH-1461: Include the signature line of cdef functions in the import-time line...Stefan Behnel5 years
gh1461_cover_sig_line_masterGH-1461: Include the signature line of cdef functions in the import-time line...Stefan Behnel5 years
gh1807_getitem_mapping_firstTry the Mapping protocol before the Sequence protocol on getitem/setitem/deli...Stefan Behnel5 years
gh2056_special_binopApply suggestions from code review Robert Bradshaw4 years
gh2306_coro_frameImplement "gen.gi_frame" and "coro.cr_frame" attributes on generators and cor...Stefan Behnel5 years
gh2343_heap_typesGenerate "PyType_Spec" structs instead of "PyTypeObject" structs for heap types.Stefan Behnel4 years
gh2564_enable_bindingTry to work around some test issues in PyPy3:Stefan Behnel4 years
gh2565_language_level_3strFix accidentally modified comment.Stefan Behnel5 years
gh2580_enable_generator_stopAdd "generator_stop" to default future imports for language_level=3.Stefan Behnel5 years
gh2665_package_init_pyxUse the same list of potential package init file names everywhere (not just "...Stefan Behnel5 years
gh2670_win_intopAdd failing test for GH-2670.Stefan Behnel6 years
gh2692_remove_py26_supportRemove support for Py2.6 and various quirks that special-cased it.Stefan Behnel6 years
gh2781_pep487_init_subclassDisable "test_subclassinit" test only in PyPy2, not in PyPy3.Stefan Behnel4 years
gh2983_lambda_sigGH-2983: Add failing tests for "Signature.from_callable(lambda)".Stefan Behnel4 years
gh3090_always_allow_keywordsExtend "always_allow_keywords" test to cover some edge cases.Stefan Behnel4 years
gh3092_percent_d_formatFix optimised string formatting when '%d' argument is a float object, which d...Stefan Behnel4 years
gh3481_defaults_warningAvoid creating "__defaults__" getter functions for fused dispatch function.Stefan Behnel4 years
gh3545_reduce_cython_reimportWork around error that "__reduce_cython__ cannot be found" when re-importing ...Stefan Behnel4 years
gh3554_smart_exit_gilFix the memoryview error exit case (don't need the GIL for it) and add assert...Stefan Behnel4 years
gh3573_versioned_pxdsFix test in Py2 by avoiding namespace packages in favour of a normal package.Stefan Behnel4 years
gh3578_refleakReimplement __Pyx_PyDict_GetItemStrWithError() as a hacky version in Py2 to g...Stefan Behnel4 years
gh3625_returns_excCheck for exceptions also when @returns() is used, not only for "->" return t...Stefan Behnel4 years
gh3678_undep_unicodeExtend tests and accept ambiguity of surrogate pairs in Unicode string litera...Stefan Behnel4 years
gh884_docstringsSupport CPython builds with docstrings disabled by wrapping docstring literal...Stefan Behnel5 years
gsoc-kurt-regraftA gentle start on #469Dag Sverre Seljebotn14 years
ipython711Remove legacy imports from IPython integration since the "py3compat" module c...Stefan Behnel4 years
ipython711_masterMerge branch '0.29.x' into ipython711_masterStefan Behnel4 years
less_tp_newAvoid generating empty tp_new() functions if we can copy the function pointer...Stefan Behnel5 years
lintingClean up some operator usages and style issues, and enforce them with pycodes...Stefan Behnel4 years
ll3_new_style_classesFix test that depended on old-style classes in Py2.Stefan Behnel4 years
masterMerge branch '0.29.x'Stefan Behnel11 months
msvc_cppClarify types in atan2() call for usage in MSVC++.Stefan Behnel5 years
neg-overflowPyPy: Improve negative overflow error messages in integral type conversionLisandro Dalcin9 years
no-old-pythonuncomment vector assign function templateRobert Bradshaw10 years
optimise_pysequence_listAvoid calling PySequence_List() in some cases where we can see that the argum...Stefan Behnel4 years
patma-previewMerge branch 'master' into patma-previewda-woods17 months
pep484_typinginitial split of Shadow.py file to start working on PEP 484 type declaration ...Stefan Behnel8 years
pep515_underscores_in_numbersmake test runner exit with non-0 return status on exceptions (this shadowed a...Stefan Behnel8 years
pkg_init_windowsExport "PyInit___init__" and "init__init__" as additional module init functio...Stefan Behnel5 years
release[0.29] implement the --depfile command-line option for the "cython" tool (GH-...Eli Schwartz21 months
robertwb-rectUpdate C++ Rectangle example.Robert Bradshaw8 years
simplify_utility_loadingSimplify the utility code loading by requiring the source file to be named ex...Stefan Behnel4 years
smarter_bounds_checksOptimise internal bounds checks like "0 <= i <= limit" using a single unsigne...Stefan Behnel6 years
test_statsPrint aggregated test stats of all shards.Stefan Behnel6 years
travis-ciTravis-CI: Exclude tests failing on macOS with C++Lisandro Dalcin7 years
travis_cleanupDisable extended test dependencies also in Py3.8/9 since not all of them are ...Stefan Behnel4 years
tune_callsChange many internal function calls to use fastcall/vectorcall.Stefan Behnel4 years
update_test_dependenciesUse newer test dependencies in Py3.6+.Stefan Behnel3 years
 
TagDownloadAuthorAge
0.29.34cython-0.29.34.tar.gz  Stefan Behnel13 months
3.0.0b2cython-3.0.0b2.tar.gz  Stefan Behnel13 months
3.0.0b1cython-3.0.0b1.tar.gz  Stefan Behnel14 months
0.29.33cython-0.29.33.tar.gz  Stefan Behnel16 months
3.0.0a11cython-3.0.0a11.tar.gz  Stefan Behnel21 months
0.29.32cython-0.29.32.tar.gz  Stefan Behnel21 months
0.29.31cython-0.29.31.tar.gz  Stefan Behnel21 months
0.29.30cython-0.29.30.tar.gz  Stefan Behnel23 months
0.29.29cython-0.29.29.tar.gz  Stefan Behnel23 months
0.29.28cython-0.29.28.tar.gz  Stefan Behnel2 years
0.29.27cython-0.29.27.tar.gz  Stefan Behnel2 years
3.0.0a10cython-3.0.0a10.tar.gz  Stefan Behnel2 years
0.29.26cython-0.29.26.tar.gz  Stefan Behnel2 years
0.29.25-1cython-0.29.25-1.tar.gz  Stefan Behnel2 years
0.29.25cython-0.29.25.tar.gz  Stefan Behnel2 years
3.0.0a9cython-3.0.0a9.tar.gz  Stefan Behnel3 years
0.29.24cython-0.29.24.tar.gz  Stefan Behnel3 years
3.0.0a8cython-3.0.0a8.tar.gz  Stefan Behnel3 years
3.0a7cython-3.0a7.tar.gz  Stefan Behnel3 years
0.29.23cython-0.29.23.tar.gz  Stefan Behnel3 years
0.29.22cython-0.29.22.tar.gz  Stefan Behnel3 years
3.0a6cython-3.0a6.tar.gz  Stefan Behnel4 years
0.29.21cython-0.29.21.tar.gz  Stefan Behnel4 years
0.29.20cython-0.29.20.tar.gz  Stefan Behnel4 years
0.29.19cython-0.29.19.tar.gz  Stefan Behnel4 years
3.0a5cython-3.0a5.tar.gz  Stefan Behnel4 years
0.29.18cython-0.29.18.tar.gz  Stefan Behnel4 years
3.0a4cython-3.0a4.tar.gz  Stefan Behnel4 years
3.0a3cython-3.0a3.tar.gz  Stefan Behnel4 years
0.29.17cython-0.29.17.tar.gz  Stefan Behnel4 years
3.0a2cython-3.0a2.tar.gz  Stefan Behnel4 years
3.0a1cython-3.0a1.tar.gz  Stefan Behnel4 years
0.29.16cython-0.29.16.tar.gz  Stefan Behnel4 years
0.29.15cython-0.29.15.tar.gz  Stefan Behnel4 years
0.29.14cython-0.29.14.tar.gz  Stefan Behnel4 years
0.29.13cython-0.29.13.tar.gz  Stefan Behnel5 years
0.29.12cython-0.29.12.tar.gz  Stefan Behnel5 years
0.29.11cython-0.29.11.tar.gz  Stefan Behnel5 years
0.29.10cython-0.29.10.tar.gz  Stefan Behnel5 years
0.29.9cython-0.29.9.tar.gz  Stefan Behnel5 years
0.29.8cython-0.29.8.tar.gz  Stefan Behnel5 years
0.29.7cython-0.29.7.tar.gz  Stefan Behnel5 years
0.29.6cython-0.29.6.tar.gz  Stefan Behnel5 years
0.29.5cython-0.29.5.tar.gz  Stefan Behnel5 years
0.29.4cython-0.29.4.tar.gz  Stefan Behnel5 years
0.29.3cython-0.29.3.tar.gz  Stefan Behnel5 years
0.29.2cython-0.29.2.tar.gz  Stefan Behnel5 years
0.29.1cython-0.29.1.tar.gz  Stefan Behnel5 years
0.28.6cython-0.28.6.tar.gz  Stefan Behnel5 years
0.29cython-0.29.tar.gz  Stefan Behnel6 years
0.29rc2cython-0.29rc2.tar.gz  Stefan Behnel6 years
0.29rc1cython-0.29rc1.tar.gz  Stefan Behnel6 years
0.29b1cython-0.29b1.tar.gz  Stefan Behnel6 years
0.28.5cython-0.28.5.tar.gz  Stefan Behnel6 years
0.28.4cython-0.28.4.tar.gz  Stefan Behnel6 years
0.28.3cython-0.28.3.tar.gz  Stefan Behnel6 years
0.28.2cython-0.28.2.tar.gz  Stefan Behnel6 years
0.28.1cython-0.28.1.tar.gz  Stefan Behnel6 years
0.28cython-0.28.tar.gz  Stefan Behnel6 years
0.28rc1cython-0.28rc1.tar.gz  Stefan Behnel6 years
0.28b2cython-0.28b2.tar.gz  Stefan Behnel6 years
0.28b1cython-0.28b1.tar.gz  Stefan Behnel6 years
0.27.3cython-0.27.3.tar.gz  Stefan Behnel6 years
0.27.2cython-0.27.2.tar.gz  Stefan Behnel7 years
0.27.1cython-0.27.1.tar.gz  Stefan Behnel7 years
0.27.1b1cython-0.27.1b1.tar.gz  Stefan Behnel7 years
0.27cython-0.27.tar.gz  Stefan Behnel7 years
0.27rc1cython-0.27rc1.tar.gz  Stefan Behnel7 years
0.27b1cython-0.27b1.tar.gz  Stefan Behnel7 years
0.27a1cython-0.27a1.tar.gz  Stefan Behnel7 years
0.26.1cython-0.26.1.tar.gz  Stefan Behnel7 years
0.26.1rc1cython-0.26.1rc1.tar.gz  Stefan Behnel7 years
0.26cython-0.26.tar.gz  Robert Bradshaw7 years
0.26rc2cython-0.26rc2.tar.gz  Robert Bradshaw7 years
0.26rc1cython-0.26rc1.tar.gz  Robert Bradshaw7 years
0.26rc0cython-0.26rc0.tar.gz  Robert Bradshaw7 years
0.26b2cython-0.26b2.tar.gz  Robert Bradshaw7 years
0.26b1cython-0.26b1.tar.gz  Robert Bradshaw7 years
0.26b0cython-0.26b0.tar.gz  Robert Bradshaw7 years
0.26.alpha0cython-0.26.alpha0.tar.gz  Robert Bradshaw7 years
0.25.2cython-0.25.2.tar.gz  Robert Bradshaw7 years
0.25.2rc0cython-0.25.2rc0.tar.gz  Robert Bradshaw7 years
0.25.2b1cython-0.25.2b1.tar.gz  Robert Bradshaw7 years
0.25.1cython-0.25.1.tar.gz  Robert Bradshaw8 years
0.25.1b1cython-0.25.1b1.tar.gz  Robert Bradshaw8 years
0.25.1b0cython-0.25.1b0.tar.gz  Robert Bradshaw8 years
0.25cython-0.25.tar.gz  Robert Bradshaw8 years
0.25b2cython-0.25b2.tar.gz  Robert Bradshaw8 years
0.25b1cython-0.25b1.tar.gz  Robert Bradshaw8 years
0.25b0cython-0.25b0.tar.gz  Robert Bradshaw8 years
0.25a0cython-0.25a0.tar.gz  Robert Bradshaw8 years
0.24.1cython-0.24.1.tar.gz  Stefan Behnel8 years
0.24cython-0.24.tar.gz  Robert Bradshaw8 years
0.24b0cython-0.24b0.tar.gz  Robert Bradshaw8 years
0.23.5cython-0.23.5.tar.gz  Stefan Behnel8 years
0.24a0cython-0.24a0.tar.gz  Robert Bradshaw8 years
0.23.4cython-0.23.4.tar.gz  Stefan Behnel9 years
0.23.3cython-0.23.3.tar.gz  Stefan Behnel9 years
0.23.2cython-0.23.2.tar.gz  Stefan Behnel9 years
0.23.1cython-0.23.1.tar.gz  Stefan Behnel9 years
0.23cython-0.23.tar.gz  Stefan Behnel9 years
0.23b2cython-0.23b2.tar.gz  Stefan Behnel9 years
0.23.beta1cython-0.23.beta1.tar.gz  Stefan Behnel9 years
0.22.1cython-0.22.1.tar.gz  Stefan Behnel9 years
0.22.1rc1cython-0.22.1rc1.tar.gz  Stefan Behnel9 years
0.22cython-0.22.tar.gz  Robert Bradshaw9 years
0.22.beta0cython-0.22.beta0.tar.gz  Robert Bradshaw9 years
0.22.alpha0cython-0.22.alpha0.tar.gz  Robert Bradshaw9 years
0.21.2cython-0.21.2.tar.gz  Stefan Behnel9 years
0.21.1cython-0.21.1.tar.gz  Stefan Behnel10 years
0.21cython-0.21.tar.gz  Stefan Behnel10 years
0.21rc1cython-0.21rc1.tar.gz  Stefan Behnel10 years
0.21b1cython-0.21b1.tar.gz  Stefan Behnel10 years
0.21b2cython-0.21b2.tar.gz  Stefan Behnel10 years
0.21a1cython-0.21a1.tar.gz  Stefan Behnel10 years
0.20.2cython-0.20.2.tar.gz  Robert Bradshaw10 years
0.20.2b1cython-0.20.2b1.tar.gz  Robert Bradshaw10 years
0.20.1cython-0.20.1.tar.gz  Robert Bradshaw10 years
0.20.1rc1cython-0.20.1rc1.tar.gz  Robert Bradshaw10 years
0.20cython-0.20.tar.gz  Robert Bradshaw10 years
0.20rc1cython-0.20rc1.tar.gz  Robert Bradshaw10 years
0.20b2cython-0.20b2.tar.gz  Robert Bradshaw10 years
0.20b1cython-0.20b1.tar.gz  Robert Bradshaw10 years
0.19.2cython-0.19.2.tar.gz  Stefan Behnel11 years
0.19.1cython-0.19.1.tar.gz  Stefan Behnel11 years
0.19cython-0.19.tar.gz  Stefan Behnel11 years
0.19rc1cython-0.19rc1.tar.gz  Stefan Behnel11 years
0.19b2cython-0.19b2.tar.gz  Stefan Behnel11 years
0.19b1cython-0.19b1.tar.gz  Stefan Behnel11 years
0.18cython-0.18.tar.gz  Stefan Behnel11 years
0.18rc1cython-0.18rc1.tar.gz  Stefan Behnel11 years
0.18b1cython-0.18b1.tar.gz  Stefan Behnel11 years
0.17.4cython-0.17.4.tar.gz  Robert Bradshaw11 years
0.17.3cython-0.17.3.tar.gz  Stefan Behnel11 years
0.17.2cython-0.17.2.tar.gz  Stefan Behnel11 years
0.17cython-0.17.tar.gz  Robert Bradshaw12 years
0.11.rccython-0.11.rc.tar.gz  Robert Bradshaw12 years
0.12cython-0.12.tar.gz  Robert Bradshaw12 years
0.12.1cython-0.12.1.tar.gz  Robert Bradshaw12 years
0.12.alpha0cython-0.12.alpha0.tar.gz  Robert Bradshaw12 years
0.12.rc0cython-0.12.rc0.tar.gz  Robert Bradshaw12 years
0.13cython-0.13.tar.gz  Robert Bradshaw12 years
0.13.beta0cython-0.13.beta0.tar.gz  Robert Bradshaw12 years
0.13.beta1cython-0.13.beta1.tar.gz  Robert Bradshaw12 years
0.14cython-0.14.tar.gz  Robert Bradshaw12 years
0.14.1cython-0.14.1.tar.gz  Robert Bradshaw12 years
0.14.1rc0cython-0.14.1rc0.tar.gz  Robert Bradshaw12 years
0.14.1rc1cython-0.14.1rc1.tar.gz  Robert Bradshaw12 years
0.14.1rc2cython-0.14.1rc2.tar.gz  Robert Bradshaw12 years
0.14.1rc3cython-0.14.1rc3.tar.gz  Robert Bradshaw12 years
0.14.alpha0cython-0.14.alpha0.tar.gz  Robert Bradshaw12 years
0.14.beta0cython-0.14.beta0.tar.gz  Robert Bradshaw12 years
0.14.beta1cython-0.14.beta1.tar.gz  Robert Bradshaw12 years
0.14.beta2cython-0.14.beta2.tar.gz  Robert Bradshaw12 years
0.14.rc0cython-0.14.rc0.tar.gz  Robert Bradshaw12 years
0.15cython-0.15.tar.gz  Robert Bradshaw12 years
0.15.1cython-0.15.1.tar.gz  Robert Bradshaw12 years
0.15rc0cython-0.15rc0.tar.gz  Robert Bradshaw12 years
0.15rc1cython-0.15rc1.tar.gz  Robert Bradshaw12 years
0.15rc2cython-0.15rc2.tar.gz  Robert Bradshaw12 years
0.16cython-0.16.tar.gz  Robert Bradshaw12 years
0.16.beta0cython-0.16.beta0.tar.gz  Robert Bradshaw12 years
0.16rc0cython-0.16rc0.tar.gz  Robert Bradshaw12 years
0.16rc1cython-0.16rc1.tar.gz  Robert Bradshaw12 years
0.16rc2cython-0.16rc2.tar.gz  Robert Bradshaw12 years
0.17.1cython-0.17.1.tar.gz  Robert Bradshaw12 years
0.17.beta1cython-0.17.beta1.tar.gz  Robert Bradshaw12 years
0.17b2cython-0.17b2.tar.gz  Robert Bradshaw12 years
0.17b3cython-0.17b3.tar.gz  Robert Bradshaw12 years
0.17b4cython-0.17b4.tar.gz  Robert Bradshaw12 years
0.9.6.14cython-0.9.6.14.tar.gz  Robert Bradshaw12 years
0.9.8cython-0.9.8.tar.gz  Robert Bradshaw12 years
0.9.8.1cython-0.9.8.1.tar.gz  Robert Bradshaw12 years
0.9.8rc1cython-0.9.8rc1.tar.gz  Robert Bradshaw12 years
0.9.9.2.betacython-0.9.9.2.beta.tar.gz  Robert Bradshaw12 years
0.10cython-0.10.tar.gz  Robert Bradshaw12 years
0.10.1cython-0.10.1.tar.gz  Robert Bradshaw12 years
0.10.2cython-0.10.2.tar.gz  Robert Bradshaw12 years
0.10.3cython-0.10.3.tar.gz  Robert Bradshaw12 years
0.11-betacython-0.11-beta.tar.gz  Robert Bradshaw12 years
0.11.1cython-0.11.1.tar.gz  Robert Bradshaw12 years
0.11.1.alphacython-0.11.1.alpha.tar.gz  Robert Bradshaw12 years
0.11.1.betacython-0.11.1.beta.tar.gz  Robert Bradshaw12 years
0.11.2cython-0.11.2.tar.gz  Robert Bradshaw12 years
0.11.2.rc1cython-0.11.2.rc1.tar.gz  Robert Bradshaw12 years
0.11.3cython-0.11.3.tar.gz  Robert Bradshaw12 years
0.11.3.rc0cython-0.11.3.rc0.tar.gz  Robert Bradshaw12 years