index
:
delta/cython.git
0.17
0.18.x
0.19.x
0.20.x
0.21.x
0.22.x
0.23.x
0.24.x
0.25.x
0.27.x
0.28.x
0.29.x
cgetter_rewrite
ci_compile_all
clean_up_capi_features
cy3str
dalcinl-embedsignature
dalcinl/fix-c-used-variable
dalcinl/fix-c-warning
dalcinl/fix-cpdef-warning
dalcinl/fix-getbuffer
dalcinl/fix-module-cleanup
dalcinl/fix-release
dalcinl/fix-travis
dalcinl/fix-try-finally
dalcinl/mark-unused-vars
dalcinl/no-old-python
dalcinl/numpy
dropPy32
enable_limited_api_file_tests
faster_absolute_reimports
faster_pymultiply
fix-pypy3
fix_build_ext
fix_gh3246
fix_srctree_tests_on_windows
fixed_code_objects
full_code_writer
gh1461_cover_sig_line
gh1461_cover_sig_line_master
gh1807_getitem_mapping_first
gh2056_special_binop
gh2306_coro_frame
gh2343_heap_types
gh2564_enable_binding
gh2565_language_level_3str
gh2580_enable_generator_stop
gh2665_package_init_pyx
gh2670_win_intop
gh2692_remove_py26_support
gh2781_pep487_init_subclass
gh2983_lambda_sig
gh3090_always_allow_keywords
gh3092_percent_d_format
gh3481_defaults_warning
gh3545_reduce_cython_reimport
gh3554_smart_exit_gil
gh3573_versioned_pxds
gh3578_refleak
gh3625_returns_exc
gh3678_undep_unicode
gh884_docstrings
gsoc-kurt-regraft
ipython711
ipython711_master
less_tp_new
linting
ll3_new_style_classes
master
msvc_cpp
neg-overflow
no-old-python
optimise_pysequence_list
patma-preview
pep484_typing
pep515_underscores_in_numbers
pkg_init_windows
release
robertwb-rect
simplify_utility_loading
smarter_bounds_checks
test_stats
travis-ci
travis_cleanup
tune_calls
update_test_dependencies
github.com: cython/cython.git
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Cython
/
Compiler
/
UtilityCode.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
Improve "cpdef enum" to Python conversion (GH-4877)
da-woods
2023-01-10
1
-0
/
+7
*
Prevent C++ coercions from picking up user-set directives (GH-4206)
da-woods
2021-07-20
1
-0
/
+21
*
Avoid the terms whitelist and blacklist.
Robert Bradshaw
2020-12-18
1
-2
/
+2
*
Fix many indentation and whitespace issues throughout the code base (GH-3673)
scoder
2020-06-10
1
-1
/
+1
*
Fix a typo that prevented UtilityCode.get_tree(entries_only=True) from workin...
Stefan Behnel
2020-04-29
1
-1
/
+1
*
Compile C++ Cython utility code in a C++ context.
Stefan Behnel
2018-03-11
1
-5
/
+5
*
Do not redeclare types used in utility code specialization.
Robert Bradshaw
2017-06-16
1
-1
/
+2
*
Allow type objects in utility code context.
Robert Bradshaw
2017-06-16
1
-0
/
+18
*
whitespace
Stefan Behnel
2016-03-28
1
-2
/
+1
*
minor code cleanup
Stefan Behnel
2016-03-28
1
-3
/
+3
*
fix bug where multiple utility code dependencies could be ignored due to loop...
Stefan Behnel
2016-03-28
1
-19
/
+15
*
Fix a couple of tests due to utility code changes.
Robert Bradshaw
2015-09-03
1
-1
/
+3
*
Make cpdef enums into first-class types.
Robert Bradshaw
2015-09-03
1
-0
/
+11
*
make dict iteration compatible with Py2/Py3
Stefan Behnel
2015-07-25
1
-1
/
+1
*
prevent fallback to absolute cimport when relative cimport is not found; gene...
Stefan Behnel
2015-04-05
1
-1
/
+3
*
prevent recursively generated Cython utility code (i.e. used by other Cython ...
Stefan Behnel
2014-10-25
1
-1
/
+4
*
whitespace
Stefan Behnel
2014-10-24
1
-1
/
+1
*
Fix CythonUtilityCode equality to avoid duplication.
Robert Bradshaw
2014-10-12
1
-0
/
+12
*
reuse existing types/names in module for cfunc wrapping instead of redeclarin...
Stefan Behnel
2014-10-11
1
-1
/
+13
*
reformat some code
Stefan Behnel
2014-10-11
1
-9
/
+6
*
make cfunc wrapper function support kwargs if the defining module wants it an...
Stefan Behnel
2014-10-10
1
-2
/
+4
*
Cleanup.
Robert Bradshaw
2014-10-09
1
-1
/
+0
*
Fix C warnings and C++ errors.
Robert Bradshaw
2014-10-09
1
-0
/
+1
*
Allow C function conversion with typedef, object, and extension arguments and...
Robert Bradshaw
2014-10-08
1
-0
/
+2
*
use explicit relative imports everywhere and enable absolute imports by default
Stefan Behnel
2014-06-17
1
-6
/
+9
*
Better fused buffer runtime dispatch + dispatch restructuring + PyxCodeWriter
Mark Florisson
2012-04-26
1
-0
/
+8
*
Use whitelist for declaring entries in a scope
Mark Florisson
2012-01-29
1
-2
/
+4
*
major cleanup refactoring of the utility code loading support,
Stefan Behnel
2011-11-14
1
-1
/
+11
*
removed lots of unused imports, delayed some imports that are only needed for...
Stefan Behnel
2011-11-13
1
-2
/
+0
*
cimport cython in CyUtility, more tests, nogil slicing
Mark Florisson
2011-09-30
1
-5
/
+10
*
Support slicing memoryview slices
Mark Florisson
2011-09-30
1
-1
/
+1
*
Support casting pointers to cython.array
Mark Florisson
2011-09-30
1
-8
/
+7
*
initializedcheck directive + uninitialized memslice checking + memoryview ind...
Mark Florisson
2011-09-30
1
-1
/
+11
*
MemoryViewSlice indexing and object coercion + MemoryView indexing
Mark Florisson
2011-09-30
1
-4
/
+11
*
Modify utility code loader as per discussion + tests
Mark Florisson
2011-09-30
1
-2
/
+2
*
@cname for enum/struct in CythonUtilityCode + simple memslice indexing
Mark Florisson
2011-09-30
1
-1
/
+2
*
Utility Code loader + memview python3 compat
Mark Florisson
2011-09-30
1
-1
/
+2
*
Get rid of a lot of entry declarations + optional argument to not allocate bu...
Mark Florisson
2011-09-30
1
-2
/
+2
*
Fix refnanny + test tags
Mark Florisson
2011-09-30
1
-5
/
+14
*
cython.memoryview implementation
Kurt Smith
2011-09-30
1
-1
/
+1
*
Populate the cython.view module with some Python objects
Dag Sverre Seljebotn
2011-09-30
1
-7
/
+12
*
Delete trailing whitespaces
Vitja Makarov
2011-07-25
1
-1
/
+1
*
used kw argument to declare_in_scope
Mark Florisson
2011-07-19
1
-2
/
+2
*
Support CythonUtilityCode dependencies in CythonUtilityCode
Mark Florisson
2011-07-19
1
-0
/
+6
*
Cython Utility Code cname extclass decorator + extmethod prototypes
Mark Florisson
2011-07-19
1
-6
/
+72
*
Support cname() decorators in CythonUtilityCode
Mark Florisson
2011-07-19
1
-28
/
+14
*
Test for problem with CythonUtilityCode overwriting __test__
Dag Sverre Seljebotn
2011-07-19
1
-0
/
+3
*
Support utility code written in Cython
Dag Sverre Seljebotn
2011-07-19
1
-0
/
+61