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
/
Builtins.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fix optimised PyLong abs() implementation in Py3.12.
Stefan Behnel
2023-04-14
1
-1
/
+12
*
Implement support for the new PyLong struct layout in Py3.12a7. (GH-5353)
scoder
2023-04-05
1
-1
/
+1
*
Fix some issues when optimising the builtin memoryview (GH-5271)
da-woods
2023-03-01
1
-3
/
+3
*
Fix PyLong digits access in CPython 3.12.
Stefan Behnel
2023-02-13
1
-1
/
+1
*
Make sure we parse int(Py_UCS4) as a digit and not a plain character value in...
scoder
2023-01-25
1
-0
/
+36
*
Optimize dispatch for fused memoryview types (GH-5073)
da-woods
2023-01-12
1
-0
/
+47
*
Restore old PyEval_EvalCode() signature for older versions of PyPy (GH-4236)
Matti Picus
2021-06-17
1
-1
/
+1
*
Assume that all live PyPy3 installations know about the correct Py3 signature...
Stefan Behnel
2021-05-26
1
-1
/
+1
*
Avoid empty frozenset singleton on Python 3.10 (GH-4049)
da-woods
2021-03-30
1
-2
/
+2
*
Keep reference to module dict around also in limited mode (GH-3707)
Matthias Braun
2020-06-26
1
-17
/
+3
*
Merge branch '0.29.x'
Stefan Behnel
2020-06-20
1
-0
/
+3
|
\
|
*
exec() did not allow recent Python syntax features in Py3.8+ due to https://b...
Stefan Behnel
2020-06-20
1
-0
/
+3
|
*
Use Py_SET_SIZE() and Py_SET_REFCNT() on Python 3.9.0a4 and newer (GH-3639)
Victor Stinner
2020-05-27
1
-1
/
+2
*
|
Avoid using "tp_name" when CYTHON_COMPILING_IN_LIMITED_API (GH-3693)
Matthias Braun
2020-06-20
1
-7
/
+17
*
|
Use Py_SET_SIZE() and Py_SET_REFCNT() on Python 3.9.0a4 and newer (GH-3639)
Victor Stinner
2020-05-27
1
-1
/
+2
*
|
Sprinkle lots of branch prediction hints in places where exceptions are being...
Stefan Behnel
2020-04-12
1
-8
/
+8
*
|
Expand LIMITED_API support (GH-3311)
Eddie Elizondo
2020-02-18
1
-38
/
+6
*
|
Add a new utility function "__Pyx_PyObject_GetAttrStrNoError()" that does not...
Stefan Behnel
2018-12-27
1
-2
/
+12
*
|
Remove support for Py2.6 and various quirks that special-cased it.
gh2692_remove_py26_support
Stefan Behnel
2018-10-30
1
-9
/
+0
|
/
*
Copy also the short long_neg() code from CPython for the specialised "abs(PyL...
Stefan Behnel
2018-03-25
1
-1
/
+11
*
Inline fast special cases for "abs(PyLong)" when the argument is non-negative...
Stefan Behnel
2018-03-25
1
-0
/
+27
*
Split prototype part off a utility function to move the actual implementation...
Stefan Behnel
2018-03-16
1
-0
/
+5
*
Speed up some dict lookups in Py3.5+ by calling the faster "_PyDict_GetItem_K...
Stefan Behnel
2017-10-08
1
-1
/
+1
*
Re-simplify fallback abs() expression.
Stefan Behnel
2017-09-22
1
-1
/
+1
*
Remove all (incorrect) casts in abs(long long).
Stefan Behnel
2017-09-22
1
-5
/
+5
*
Try to fix abs(long long) in MSVC by returning the negative value for the "un...
Stefan Behnel
2017-09-22
1
-2
/
+2
*
Always use _abs64() for "long long" on Windows, not only on 64bit.
Stefan Behnel
2017-09-22
1
-1
/
+1
*
Add missing cast.
Stefan Behnel
2017-09-22
1
-1
/
+1
*
Remove unused code.
Stefan Behnel
2017-09-12
1
-16
/
+0
*
Avoid excessive inlining in __Pyx_GetAttr3() helper and streamline both cases...
Stefan Behnel
2017-09-12
1
-10
/
+14
*
Return a signed value for abs(int).
Robert Bradshaw
2017-08-24
1
-3
/
+1
*
Raise TypeError for non-string hasattr.
Robert Bradshaw
2017-05-18
1
-0
/
+24
*
add macro indirections that apparently help making pyston happier
Stefan Behnel
2016-07-31
1
-1
/
+1
*
replace generic "COMPILING_IN_*" C macros with feature specific guards that a...
Stefan Behnel
2016-07-30
1
-2
/
+2
*
avoid some redundant calls to PyThreadState_GET() to reduce locking etc. duri...
Stefan Behnel
2015-09-20
1
-2
/
+1
*
streamline exception type tests
Stefan Behnel
2015-09-17
1
-1
/
+2
*
work around incorrect C-API signature in PyPy3
Stefan Behnel
2015-07-08
1
-1
/
+1
*
align abs(long long) implementation with abs(ssize_t) macro
Stefan Behnel
2015-07-01
1
-9
/
+12
*
remove left-over utility code inclusion
Stefan Behnel
2015-05-22
1
-1
/
+0
*
speed up __Pyx_PySet_Update() a little by calling it as an unbound method
Stefan Behnel
2015-05-21
1
-1
/
+1
*
cache underlying PyCFunction of calls to unbound methods of builtins in utili...
Stefan Behnel
2015-05-21
1
-18
/
+27
*
avoid calling into CPython when updating a set with an empty set
Stefan Behnel
2015-05-15
1
-0
/
+2
*
implement PEP 448 for set/dict literals
Stefan Behnel
2015-05-14
1
-0
/
+30
*
minor pypy code improvements
Stefan Behnel
2015-04-11
1
-1
/
+1
*
avoid using PyByteArray_*() C-API in pypy unless it defines it
Stefan Behnel
2015-04-11
1
-0
/
+2
*
reimplement ord() to make its (C long) return value and input argument type (...
Stefan Behnel
2015-03-29
1
-0
/
+43
*
work around PyPy's lack of PyFrozenSet_*() C-API
Stefan Behnel
2014-09-18
1
-3
/
+14
*
avoid useless indirection for module dict lookup and instead use known refere...
Stefan Behnel
2014-09-01
1
-3
/
+1
*
split internal method calling helper functions into specialised 0-, 1-, 2- ar...
Stefan Behnel
2014-08-21
1
-9
/
+9
*
simplify __Pyx_Globals() a little
Stefan Behnel
2014-05-17
1
-11
/
+3
[next]