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
/
Objects
Commit message (
Expand
)
Author
Age
Files
Lines
*
Circumventing a bug in glibc (issue #17976).
Serhiy Storchaka
2013-12-17
1
-3/+5
*
Issue #17976: Fixed potential problem with file.write() not detecting IO error
Serhiy Storchaka
2013-12-17
1
-1/+5
*
Issue #14432: Generator now clears the borrowed reference to the thread state
Victor Stinner
2013-12-13
1
-0/+3
*
Issue #6477: Revert fbb97f6eb3b3 as it broke test_xpickle.
Alexandre Vassalotti
2013-12-01
1
-2/+2
*
Issue #6477: Added pickling support for singletons and their types.
Alexandre Vassalotti
2013-12-01
1
-2/+2
*
fix docstring. extra \.
Gregory P. Smith
2013-11-25
1
-1/+1
*
Document that @property can incorporate a docstring from the getter method. ...
Raymond Hettinger
2013-11-24
1
-5/+9
*
Issue #19279: UTF-7 decoder no more produces illegal unicode strings.
Serhiy Storchaka
2013-10-19
1
-0/+2
*
Issue #19171: speed some cases of 3-argument long pow().
Tim Peters
2013-10-05
1
-4/+10
*
#19069: use imperative mood in float object docstrings. Patch by Marco Buttu.
Ezio Melotti
2013-10-05
1
-9/+9
*
#19068: use imperative mood in complex object docstrings. Patch by Marco Buttu.
Ezio Melotti
2013-10-05
1
-2/+2
*
Various clarifications based on feedback & questions over the years.
Tim Peters
2013-08-24
1
-19/+96
*
Add line explaining the "%sort" test.
Tim Peters
2013-08-22
1
-0/+1
*
Issue 18719: Remove a false optimization
Raymond Hettinger
2013-08-14
1
-1/+0
*
Issue #15866: The xmlcharrefreplace error handler no more produces two XML
Serhiy Storchaka
2013-08-06
1
-21/+61
*
Silence compiler warning for unused declaration.
Raymond Hettinger
2013-08-05
1
-1/+0
*
Issue #18427: str.replace could crash the interpreter with huge strings.
Ronald Oussoren
2013-07-11
1
-3/+3
*
Issue #18184: PyUnicode_FromFormat() and PyUnicode_FromFormatV() now raise
Serhiy Storchaka
2013-06-23
1
-1/+18
*
Issue #18137: Detect integer overflow on precision in float.__format__()
Victor Stinner
2013-06-23
1
-2/+14
*
add missing NULL check (closes #18019)
Benjamin Peterson
2013-05-20
1
-0/+4
*
Issue #16447: Fix potential segfault when setting __name__ on a class.
Mark Dickinson
2013-04-13
1
-1/+5
*
list slotdefs in offset order rather than sorting them (closes #17610)
Benjamin Peterson
2013-04-07
1
-131/+114
*
Revert a premature patch for issue #14010 (changeset d17d10c84d27).
Serhiy Storchaka
2013-04-06
1
-3/+0
*
Issue #14010: Fix a crash when iterating or deleting deeply nested filters
Serhiy Storchaka
2013-04-06
1
-0/+3
*
allow any type with __getitem__ to be a mapping for the purposes of % (#15801)
Benjamin Peterson
2013-03-24
2
-4/+4
*
Issue #10211 : Buffer object should support the new buffer interface.
Kristján Valur Jónsson
2013-03-19
1
-2/+13
*
Issue #16445: Fix potential segmentation fault when deleting an exception mes...
Mark Dickinson
2013-03-03
1
-2/+1
*
fix building without pymalloc (closes #17228)
Benjamin Peterson
2013-02-20
1
-1/+1
*
#7963: fix error message when 'object' called with arguments.
R David Murray
2013-02-19
1
-2/+2
*
Issue #17043: The unicode-internal decoder no longer read past the end of
Serhiy Storchaka
2013-02-07
1
-27/+24
*
Issue #17034: Use Py_CLEAR() in stringobject.c.
Serhiy Storchaka
2013-02-02
1
-10/+5
*
Silence a -Wformat-extra-argument warning when compiling.
Gregory P. Smith
2013-02-02
1
-7/+15
*
Issue #16979: Fix error handling bugs in the unicode-escape-decode decoder.
Serhiy Storchaka
2013-01-29
1
-51/+28
*
Issue #10156: In the interpreter's initialization phase, unicode globals
Serhiy Storchaka
2013-01-26
1
-41/+38
*
Issue #16975: Fix error handling bug in the escape-decode decoder.
Serhiy Storchaka
2013-01-25
1
-0/+4
*
Issue #16335: Fix integer overflow in unicode-escape decoder.
Serhiy Storchaka
2013-01-21
1
-1/+2
*
Issue #15989: Fix possible integer overflow in str formatting as in unicode f...
Serhiy Storchaka
2013-01-19
1
-2/+6
*
Issue #15989: Fix several occurrences of integer overflow
Serhiy Storchaka
2013-01-19
4
-6/+42
*
Improve tooltips by listing the most common argument pattern first.
Raymond Hettinger
2013-01-19
1
-1/+1
*
Issue #14850: Now a chamap decoder treates U+FFFE as "undefined mapping"
Serhiy Storchaka
2013-01-15
1
-21/+25
*
Issue #11461: Fix the incremental UTF-16 decoder. Original patch by
Serhiy Storchaka
2013-01-08
1
-1/+4
*
Fix out of bound read in UTF-32 decoder on "narrow Unicode" builds.
Serhiy Storchaka
2013-01-08
1
-1/+1
*
untabify
Benjamin Peterson
2013-01-02
1
-3/+3
*
call PyErr_Clear() when ignoring error from PyNumber_Int (closes #15516)
Benjamin Peterson
2013-01-02
1
-1/+4
*
ensure the attribute name string is initalized before using it (closes #16839)
Benjamin Peterson
2013-01-02
1
-1/+6
*
get the core to compile --disable-unicode
Benjamin Peterson
2013-01-02
1
-1/+3
*
Issue #16761: Raise TypeError when int() or long() called with base argument ...
Serhiy Storchaka
2012-12-28
2
-2/+14
*
Issue #16602: When a weakref's target was part of a long deallocation chain, ...
Antoine Pitrou
2012-12-08
1
-3/+2
*
Issue #9742: Sneaky fix for build failure on Solaris 9.
Mark Dickinson
2012-11-17
1
-0/+9
*
Issue #15379: Fix passing of non-BMP characters as integers for the charmap d...
Antoine Pitrou
2012-11-17
1
-2/+26
[next]