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
/
Builtin.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
Inline fast special cases for "abs(PyLong)" when the argument is non-negative...
Stefan Behnel
2018-03-25
1
-1
/
+2
*
Fix exttype inheritance from builtin bytearray type.
Stefan Behnel
2018-02-16
1
-0
/
+2
*
Issue #2042: add optimized versions of set.remove() and set.discard()
Antoine Pitrou
2017-12-16
1
-1
/
+4
*
Remove dead comment.
Stefan Behnel
2017-09-12
1
-1
/
+0
*
Return a signed value for abs(int).
Robert Bradshaw
2017-08-24
1
-6
/
+15
*
Raise TypeError for non-string hasattr.
Robert Bradshaw
2017-05-18
1
-2
/
+3
*
Merge pull request #1648 from da-woods/cmplx_abs
scoder
2017-05-06
1
-17
/
+17
|
\
|
*
Reduced duplication of code in builtin integer functions
da-woods
2017-04-09
1
-21
/
+10
|
*
Reduced duplication in complex abs builtin calls
da-woods
2017-04-09
1
-16
/
+9
|
*
Now uses specialised functions for complex abs
da-woods
2017-03-28
1
-3
/
+21
*
|
include missing utility code when raising StopAsyncIteration
Stefan Behnel
2017-05-06
1
-5
/
+4
|
/
*
Disable set.update() optimization due to Python incompatibility.
Robert Bradshaw
2017-03-27
1
-2
/
+3
*
Declare Exception as a builtin type.
Robert Bradshaw
2016-09-30
1
-0
/
+3
*
Test fixes.
Robert Bradshaw
2016-07-28
1
-1
/
+1
*
Allow old_style_globals to be set via a directive.
Robert Bradshaw
2016-07-27
1
-4
/
+4
*
implement 'async for' loop statement (PEP 492)
Stefan Behnel
2015-05-25
1
-0
/
+7
*
optimise set.update()
Stefan Behnel
2015-05-21
1
-0
/
+2
*
reimplement ord() to make its (C long) return value and input argument type (...
Stefan Behnel
2015-03-29
1
-1
/
+20
*
add some more builtin names
Stefan Behnel
2014-12-17
1
-0
/
+5
*
use explicit relative imports everywhere and enable absolute imports by default
Stefan Behnel
2014-06-17
1
-5
/
+7
*
Remove obsolete utility code.
Robert Bradshaw
2014-02-22
1
-12
/
+4
*
move set compatibility helpers into Builtins.c
Stefan Behnel
2014-01-10
1
-46
/
+1
*
optimise dict.has_key()
Stefan Behnel
2013-12-31
1
-0
/
+1
*
disable redundant exception checks for optimised builtins
Stefan Behnel
2013-12-28
1
-0
/
+1
*
handle Py2 compatibility case bytearray.append(pychar)
Stefan Behnel
2013-12-27
1
-2
/
+0
*
inline bytearray.append()
Stefan Behnel
2013-12-24
1
-1
/
+4
*
let SliceNode know it returns a slice instance
Stefan Behnel
2013-12-16
1
-1
/
+2
*
fix return type of repr(): CPython guarantees to return str
Stefan Behnel
2013-12-07
1
-1
/
+1
*
also optimise basestring.join() since we now infer this type in a couple of p...
Stefan Behnel
2013-12-07
1
-1
/
+4
*
optimise str/bytes.join() and infer the result type; improve type inference f...
Stefan Behnel
2013-12-07
1
-5
/
+15
*
refactor duplicated code
Stefan Behnel
2013-12-07
1
-11
/
+14
*
support 'bytearray' in the same way as 'bytes', starting with Py2.6
Stefan Behnel
2013-11-02
1
-1
/
+3
*
extend semantics of 'basestring' typed variables to represent exactly bytes/s...
Stefan Behnel
2013-10-06
1
-1
/
+2
*
mark bytearray() and complex() as returning an instance of their type
Stefan Behnel
2013-08-30
1
-2
/
+3
*
optimize __debug__ flag
Stefan Behnel
2013-08-29
1
-0
/
+3
*
minor cleanup, use set for efficient name lookup
Stefan Behnel
2013-07-27
1
-2
/
+3
*
move getattr() utility code from Builtins.c to ObjectHandling.c as it deals w...
Stefan Behnel
2013-07-26
1
-1
/
+1
*
optimise list.extend()
Stefan Behnel
2013-07-26
1
-0
/
+2
*
inline normal case of getattr(o,n)
Stefan Behnel
2013-04-11
1
-3
/
+5
*
optimise isinstance(obj, basestring) and map basestring to unicode in Py3
Stefan Behnel
2013-03-02
1
-0
/
+1
*
automatically replace calls to builtin.__contains__() with the corresponding ...
Stefan Behnel
2013-02-22
1
-7
/
+14
*
automatically convert dict.iter*() and dict.view*() methods to .keys/values/i...
Stefan Behnel
2013-02-20
1
-0
/
+12
*
move dict.*() method implementations from Optimize.c to Builtin.c
Stefan Behnel
2013-02-20
1
-3
/
+3
*
fix long-standing bug that dict.items() etc. returned lists also in Py3
Stefan Behnel
2013-02-15
1
-6
/
+9
*
inline PyList_Append() a bit more
Stefan Behnel
2013-02-15
1
-1
/
+2
*
fix build
Stefan Behnel
2013-02-09
1
-5
/
+6
*
externalise some utility code functions
Stefan Behnel
2013-02-09
1
-49
/
+4
*
externalise some utility code functions
Stefan Behnel
2013-02-09
1
-46
/
+5
*
disable incorrect optimisation for set.discard()
Stefan Behnel
2013-02-04
1
-2
/
+3
*
optimise abs(long long)
Stefan Behnel
2013-01-21
1
-0
/
+28
[next]