index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Python
/
bltinmodule.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
[2.7] Issue GH-18560: Fix potential NULL pointer dereference in sum(). (GH-8892)
Benjamin Peterson
2018-08-24
1
-0/+5
*
closes bpo-34474: Python/bltinmodule.c: Add missing NULL check in builtin_sum...
Miss Islington (bot)
2018-08-24
1
-0/+5
*
[2.7] bpo-34234: Use _PyAnyInt_Check() and _PyAnyInt_CheckExact(). (GH-8479)
Serhiy Storchaka
2018-07-31
1
-2/+2
*
bpo-32674: Improve the docstring for __import__ (GH-5339) (GH-5494)
Mariatta
2018-02-02
1
-4/+3
*
[2.7] bpo-29526: Add reference to help('FORMATTING') in format() builtin (GH-...
Serhiy Storchaka
2017-09-11
1
-1/+3
*
bpo-23787: Change sum() docstring from sequence to iterable (GH-1859)
Mariatta
2017-06-06
1
-3/+3
*
Issue #28139: Fix messed up indentation
Martin Panter
2016-09-17
1
-34/+32
*
Issue #26874: Simplify the divmod docstring.
Zachary Ware
2016-04-28
1
-1/+1
*
Issue #26874: Make divmod docstring and full doc match
Zachary Ware
2016-04-28
1
-1/+1
*
Issue #25678: Copy buffer objects to null-terminated strings.
Serhiy Storchaka
2015-11-20
1
-5/+16
*
Issue #19362: Tweek len() doc and docstring to expand the indicated range of
Terry Jan Reedy
2014-06-16
1
-1/+1
*
#18424: PEP8ify the tense of the sum docstring.
R David Murray
2013-07-10
1
-2/+2
*
#17178: update any()/all() docstrings to document their behavior with empty i...
Ezio Melotti
2013-02-15
1
-2/+4
*
Issue #14783: Backport changes from 3.2.
Chris Jerdonek
2012-10-08
1
-1/+2
*
Issue #15741: Fix potential NULL dereference. Found by Coverity.
Stefan Krah
2012-08-20
1
-0/+2
*
Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors...
Antoine Pitrou
2012-08-15
1
-6/+16
*
Closes #9254: backport __import__ docstring/doc mentions of importlib.
R David Murray
2012-07-18
1
-2/+6
*
Issue #8767: Restore building with --disable-unicode.
Martin v. Löwis
2012-05-20
1
-0/+2
*
remove py3k warning for callable
Benjamin Peterson
2011-11-06
1
-3/+0
*
Improve docstring for divmod()
Raymond Hettinger
2011-07-19
1
-1/+1
*
Close #12501: Adjust callable() warning: callable() is only not supported in
Victor Stinner
2011-07-08
1
-1/+1
*
Untabify C files. Will watch buildbots.
Antoine Pitrou
2010-05-09
1
-2170/+2170
*
Fix trailing whitespace.
Mark Dickinson
2010-05-04
1
-1/+1
*
Issue #1533: fix inconsistency in range function argument processing:
Mark Dickinson
2010-05-04
1
-46/+73
*
account for PyObject_IsInstance's new ability to fail
Benjamin Peterson
2009-12-13
1
-1/+5
*
Issue #6985: number of range() items should be constrained to lie
Mark Dickinson
2009-12-03
1
-4/+4
*
round(0, "ermintrude") succeeded instead of producing a TypeError. Fix this.
Mark Dickinson
2009-11-24
1
-4/+4
*
Issue #7117, continued: Change round implementation to use the correctly-rou...
Mark Dickinson
2009-11-18
1
-19/+38
*
a better callable replacement
Benjamin Peterson
2009-11-17
1
-1/+1
*
Warn against replacing PyNumber_Add with PyNumber_InPlaceAdd in sum
Mark Dickinson
2009-10-26
1
-0/+9
*
revert r74699 since it loses useful error information
Benjamin Peterson
2009-09-07
1
-2/+13
*
PyObject_GetIter can set an error for its self just fine
Benjamin Peterson
2009-09-06
1
-13/+2
*
when print() gets unicode arguments, sep and end should be unicode by default...
Benjamin Peterson
2009-07-02
1
-18/+74
*
further hint to where the open docs really are
Philip Jenvey
2009-05-28
1
-1/+1
*
don't ignore exceptions from _PyObject_LengthHint
Benjamin Peterson
2009-05-09
1
-1/+3
*
Issue #1869: Fix a couple of minor round() issues.
Mark Dickinson
2009-04-18
1
-4/+1
*
Issue #2396: backport the memoryview object.
Antoine Pitrou
2009-04-02
1
-1/+1
*
Issue 1242657: list(obj) can swallow KeyboardInterrupt.
Raymond Hettinger
2009-02-02
1
-0/+2
*
follup to #3473: don't duplicate the reduce code
Benjamin Peterson
2008-08-18
1
-56/+10
*
#3479: unichr(2**32) used to return u'\x00'.
Amaury Forgeot d'Arc
2008-07-31
1
-2/+2
*
Revert 64424, 64438, and 64439.
Raymond Hettinger
2008-06-24
1
-18/+1
*
Make bin() implementation parallel oct() and hex() so that int/long subclasse...
Raymond Hettinger
2008-06-20
1
-1/+18
*
Merge in release25-maint r60793:
Gregory P. Smith
2008-06-11
1
-4/+56
*
This reverts r63675 based on the discussion in this thread:
Gregory P. Smith
2008-06-09
1
-30/+30
*
Issue 2784: fix leaks in exception exit.
Raymond Hettinger
2008-05-30
1
-2/+2
*
Renamed PyString to PyBytes
Christian Heimes
2008-05-26
1
-30/+30
*
First step of the C API rename:
Christian Heimes
2008-05-26
1
-4/+4
*
revert 63425 over Guido's Febuary message about this, that I missed
Benjamin Peterson
2008-05-17
1
-27/+15
*
fix spelling
Benjamin Peterson
2008-05-17
1
-1/+1
*
add Py3k warnings to oct and hex. backport hex behavior (because it's not dif...
Benjamin Peterson
2008-05-17
1
-15/+27
[next]