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
/
CythonScope.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fix failing relative imports in __init__ files. (#4552)
Matus Valo
2022-10-01
1
-1
/
+1
*
Implement cdef dataclasses (GH-3400)
da-woods
2022-01-29
1
-1
/
+9
*
Avoid the terms whitelist and blacklist.
Robert Bradshaw
2020-12-18
1
-1
/
+1
*
Mark view.* extension types as non-imported so that they can be inherited fro...
da-woods
2020-03-24
1
-0
/
+9
*
Misc typos
luz.paz
2018-03-12
1
-1
/
+1
*
Do not issue "redefined" warnings on C++ function overrides with different si...
Stefan Behnel
2018-03-11
1
-0
/
+4
*
Add support for the typeid operator
empyrical
2016-08-05
1
-1
/
+3
*
use explicit relative imports everywhere and enable absolute imports by default
Stefan Behnel
2014-06-17
1
-6
/
+9
*
Move cython.array to cython.view.array to avoid conflicts with pure-mode cyth...
Mark Florisson
2012-02-25
1
-1
/
+1
*
Use whitelist for declaring entries in a scope
Mark Florisson
2012-01-29
1
-2
/
+3
*
Merge cython array utility with memoryview utility
Mark Florisson
2012-01-29
1
-7
/
+3
*
removed lots of unused imports, delayed some imports that are only needed for...
Stefan Behnel
2011-11-13
1
-2
/
+0
*
Merge in fixes from master
Mark Florisson
2011-10-13
1
-3
/
+19
|
\
|
*
Defer loading cython scope until necessary
Mark Florisson
2011-10-13
1
-11
/
+24
*
|
Fix cython scope caching (it breaks about half of the test suite, but it prob...
Mark Florisson
2011-10-03
1
-8
/
+3
*
|
merge -- working fused types, broken cython testscope
Mark Florisson
2011-10-02
1
-31
/
+122
|
\
\
|
|
/
|
*
cimport cython in CyUtility, more tests, nogil slicing
Mark Florisson
2011-09-30
1
-5
/
+10
|
*
Support slicing memoryview objects
Mark Florisson
2011-09-30
1
-8
/
+4
|
*
Support casting pointers to cython.array
Mark Florisson
2011-09-30
1
-17
/
+10
|
*
MemoryViewSlice indexing and object coercion + MemoryView indexing
Mark Florisson
2011-09-30
1
-5
/
+17
|
*
Change memview access and packing modifier constants
Mark Florisson
2011-09-30
1
-1
/
+1
|
*
Modify utility code loader as per discussion + tests
Mark Florisson
2011-09-30
1
-3
/
+2
|
*
Utility Code loader + memview python3 compat
Mark Florisson
2011-09-30
1
-234
/
+17
|
*
Fix cythonarray test
Mark Florisson
2011-09-30
1
-17
/
+12
|
*
Get rid of a lot of entry declarations + optional argument to not allocate bu...
Mark Florisson
2011-09-30
1
-79
/
+30
|
*
py23 compat
Mark Florisson
2011-09-30
1
-1
/
+1
|
*
Fix strides array bug
Mark Florisson
2011-09-30
1
-2
/
+2
|
*
use_utility_code vs. memoryviews fixup
Dag Sverre Seljebotn
2011-09-30
1
-2
/
+6
|
*
replacement of 'f' flag with 'fortran' in cython.array.
Kurt Smith
2011-09-30
1
-4
/
+4
|
*
memviewslice copy implementation.
Kurt Smith
2011-09-30
1
-6
/
+9
|
*
moved memoryview initialization function from CythonUtilCode to pure C
Kurt Smith
2011-09-30
1
-145
/
+1
|
*
added array_cwrapper convenience function in CythonScope.py
Kurt Smith
2011-09-30
1
-0
/
+4
|
*
fixed bug in init_memviewslice_from_memview
Kurt Smith
2011-09-30
1
-4
/
+18
|
*
memoryviewslice declaration and assignments work.
Kurt Smith
2011-09-30
1
-1
/
+10
|
*
rename memviewslice init function.
Kurt Smith
2011-09-30
1
-1
/
+1
|
*
consistent naming scheme for memoryviews and memoryview slices.
Kurt Smith
2011-09-30
1
-15
/
+15
|
*
coercion and validation for memoryview wrappers.
Kurt Smith
2011-09-30
1
-15
/
+132
|
*
memoryview utility code pulled in when memview array syntax used in Cython so...
Kurt Smith
2011-09-30
1
-10
/
+19
|
*
Terrible hack, FIXME FIXME
Dag Sverre Seljebotn
2011-09-30
1
-2
/
+2
|
*
cython.memoryview implementation
Kurt Smith
2011-09-30
1
-29
/
+66
|
*
Remove hardcoded string, refer to Naming.typeptr_prefix instead.
Kurt Smith
2011-09-30
1
-1
/
+2
|
*
cython.array implementation & tests.
Kurt Smith
2011-09-30
1
-1
/
+158
|
*
Populate the cython.view module with some Python objects
Dag Sverre Seljebotn
2011-09-30
1
-0
/
+21
|
*
Delete trailing whitespaces
Vitja Makarov
2011-07-25
1
-3
/
+3
|
*
Support CythonUtilityCode dependencies in CythonUtilityCode
Mark Florisson
2011-07-19
1
-1
/
+14
|
*
Cython Utility Code cname extclass decorator + extmethod prototypes
Mark Florisson
2011-07-19
1
-22
/
+70
|
*
Support cname() decorators in CythonUtilityCode
Mark Florisson
2011-07-19
1
-4
/
+9
|
*
Make it possible to construct sub-magic-modules of cython
Dag Sverre Seljebotn
2011-07-19
1
-9
/
+57
|
*
Refactor the 'cython' cimport scope to use CythonUtilityCode
Dag Sverre Seljebotn
2011-07-19
1
-36
/
+47
*
|
Support fused cpdef functions with Python indexing
Mark Florisson
2011-05-13
1
-0
/
+7
[next]