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
/
Utility
/
MemoryView.pyx
Commit message (
Expand
)
Author
Age
Files
Lines
*
Remove deprecated property syntax from MemoryView utility code.
Robert Bradshaw
2016-03-17
1
-58
/
+50
*
use slightly faster PyObject_Malloc() instead of PyMem_Malloc() for small mem...
Stefan Behnel
2016-02-07
1
-2
/
+4
*
manually mangle new names used in memoryview code to prevent them from interf...
Stefan Behnel
2015-10-26
1
-13
/
+13
*
reuse pre-allocated thread locks in critical memoryview creation path
Stefan Behnel
2015-10-26
1
-4
/
+37
*
avoid unnecessary object operation in critical memoryview code path
Stefan Behnel
2015-10-26
1
-1
/
+1
*
adapt and apply major refactoring of IndexNode originally written by Mark Flo...
Stefan Behnel
2015-09-04
1
-9
/
+9
*
adapt 'unicode' usage to Py2/Py3
Stefan Behnel
2015-07-26
1
-2
/
+2
*
prevent relative import attempts for 'struct' module in memoryview code
Stefan Behnel
2015-07-22
1
-1
/
+3
*
simplify some code
Stefan Behnel
2015-02-01
1
-3
/
+2
*
minor cleanup of merged pull request, add test
Stefan Behnel
2015-02-01
1
-2
/
+4
*
work around memoryview.tobytes() off-by-one bug with suboffsets
Richard Hansen
2015-01-29
1
-1
/
+5
*
clean up some instances of suboffsets handling in memoryview code
Stefan Behnel
2015-02-01
1
-15
/
+11
*
simplify some loops in the memoryview properties implementation
Stefan Behnel
2015-02-01
1
-4
/
+4
*
Get rid of obsolete Python cruft
Lisandro Dalcin
2014-08-31
1
-1
/
+1
*
fix memory leak in memory views when copying overlapping contiguous slices
Stefan Behnel
2014-03-03
1
-0
/
+1
*
revert to using malloc/free for data buffer allocation in case external code ...
Stefan Behnel
2014-03-02
1
-2
/
+4
*
make it easier for the C compiler to prune some useless error checking code i...
Stefan Behnel
2014-03-02
1
-1
/
+1
*
simplify shape unpacking code in cython.array initialiser
Stefan Behnel
2014-03-02
1
-4
/
+1
*
add fixme comment
Stefan Behnel
2014-03-02
1
-1
/
+1
*
fix format checking for cython.array.__getbuffer__() in Py3
Stefan Behnel
2014-03-02
1
-8
/
+7
*
whitespace fix
Stefan Behnel
2014-03-02
1
-1
/
+1
*
use CPython heap memory allocation for memory views where possible (outside o...
Stefan Behnel
2014-03-02
1
-6
/
+9
*
fix memory leak in exception case
Stefan Behnel
2014-03-02
1
-15
/
+13
*
reduce overhead for cython.array() initialiser a bit
Stefan Behnel
2014-03-02
1
-10
/
+6
*
save a malloc() call when instantiating cython.array()
Stefan Behnel
2014-03-02
1
-8
/
+5
*
fix memoryview warnings
Robert Bradshaw
2013-12-18
1
-4
/
+7
*
Fix several MS compiler warnings.
Josh Ayers
2013-05-20
1
-2
/
+2
*
clean up dependencies of memoryview utility code snippets a bit to get rid of...
Stefan Behnel
2013-04-14
1
-1
/
+1
*
Fix memoryview crashes when using msvc9 64 bit compiler
cgohlke
2012-12-14
1
-1
/
+1
*
Use __Pyx_PyIndex_Check instead of PyIndex_Check
Mark Florisson
2012-11-11
1
-1
/
+1
*
C code simplification in memory view type format code
Stefan Behnel
2012-07-31
1
-2
/
+2
*
avoid overly redundant recoding in memory view dtype code (format_from_typein...
Stefan Behnel
2012-07-31
1
-15
/
+11
*
Support newaxis indexing for memoryview slices
Mark Florisson
2012-05-11
1
-0
/
+5
*
Avoid taking address of memoryviews to enable C compiler optimizations in use...
Mark Florisson
2012-05-11
1
-31
/
+27
*
Merge pull request #115 from markflorisson88/_fused_dispatch_rebased
Mark
2012-05-10
1
-1
/
+1
|
\
|
*
More fused runtime dispatch tests and some fixes
Mark Florisson
2012-04-26
1
-1
/
+1
*
|
Fix scalar slice assignment with different ndim than source object
Mark Florisson
2012-05-08
1
-2
/
+2
|
/
*
fix C compiler warning about comparison between signed and unsigned
Stefan Behnel
2012-04-19
1
-1
/
+1
*
Fix builtins.memoryview affected tests in Py3.3
Mark Florisson
2012-02-26
1
-1
/
+1
*
Allow inter-module memoryview buffer acquiring for py < 2.6
Mark Florisson
2012-02-20
1
-3
/
+14
*
Compare memoryview type pointers directly when coercing from memoryview to me...
Mark Florisson
2012-02-20
1
-3
/
+16
*
Remove alignment check and track aligned pointer
Mark Florisson
2012-02-15
1
-1
/
+24
*
Support None memoryview slices
Mark Florisson
2012-02-09
1
-0
/
+3
*
Merge cython array utility with memoryview utility
Mark Florisson
2012-01-29
1
-105
/
+82
*
Intialize object item pointer properly & C++ compat
Mark Florisson
2012-01-22
1
-5
/
+8
*
Initialize allocated cython.array buffer with object dtype to None
Mark Florisson
2012-01-22
1
-2
/
+14
*
Fix segfault caused by NULL suboffsets
Mark Florisson
2012-01-22
1
-4
/
+13
*
Significantly better performing scalar to slice assignment
Mark Florisson
2012-01-22
1
-7
/
+11
*
Support scalar slice assignment
Mark Florisson
2012-01-22
1
-7
/
+70
*
Support copying/slice assigning with dtype object
Mark Florisson
2012-01-22
1
-40
/
+94
[next]