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
*
issue 4804: Provide checks for the format string of strftime, and for the "m...
Kristján Valur Jónsson
2009-02-04
1
-1/+88
*
Validate that __length_hint__ returns a usable result.
Raymond Hettinger
2009-02-03
1
-1/+1
*
Issue 1242657: list(obj) can swallow KeyboardInterrupt.
Raymond Hettinger
2009-02-02
3
-14/+27
*
fix indentation in comment
Benjamin Peterson
2009-01-31
1
-2/+2
*
fix indentation; looks like all I managed to do the first time is make things...
Benjamin Peterson
2009-01-31
1
-2558/+2558
*
fix indentation
Benjamin Peterson
2009-01-31
1
-2/+2
*
completely detabify unicodeobject.c
Benjamin Peterson
2009-01-31
1
-3010/+3010
*
Fix comment.
Mark Dickinson
2009-01-26
1
-3/+3
*
Fix undefined behaviour (left shift of negative value) in long_hash. Also,
Mark Dickinson
2009-01-26
1
-9/+10
*
No need for carry to be type twodigits in _PyLong_AsByteArray; digit is large...
Mark Dickinson
2009-01-25
1
-1/+1
*
Fixed compile error on windows.
Hirokazu Yamamoto
2009-01-25
1
-1/+1
*
fix building the core with --disable-unicode
Benjamin Peterson
2009-01-25
3
-17/+48
*
Issue #4393: fix 3 classes of potential portability problems in longobject.c:
Mark Dickinson
2009-01-24
1
-23/+20
*
fix url
Benjamin Peterson
2009-01-20
1
-1/+1
*
#4077: No need to append \n when calling Py_FatalError
Amaury Forgeot d'Arc
2009-01-17
1
-1/+1
*
#4930: Slightly cleaner (and faster) code in type creation:
Amaury Forgeot d'Arc
2009-01-17
1
-2/+2
*
Issue #4935: The overflow checking code in the expandtabs() method common
Antoine Pitrou
2009-01-13
1
-37/+30
*
#3720: Interpreter crashes when an evil iterator removes its own next function.
Amaury Forgeot d'Arc
2009-01-12
3
-2/+19
*
Issue #4850: Change COUNT_ALLOCS variables to Py_ssize_t.
Martin v. Löwis
2009-01-07
4
-12/+18
*
Issue #3680: Reference cycles created through a dict, set or deque iterator d...
Antoine Pitrou
2009-01-01
2
-12/+29
*
Issue #4701: implicitly call PyType_Ready from PyObject_Hash
Nick Coghlan
2008-12-30
1
-0/+11
*
#4764 set IOError.filename when trying to open a directory on POSIX platforms
Benjamin Peterson
2008-12-29
1
-2/+2
*
Backport r67974:
Georg Brandl
2008-12-28
1
-16/+25
*
Remove unnecessary casts related to unicode_decode_call_errorhandler.
Alexandre Vassalotti
2008-12-27
1
-27/+29
*
add py3k warnings to frame.f_exc_*
Benjamin Peterson
2008-12-22
1
-3/+35
*
Issue #3439: add bit_length method to int and long.
Mark Dickinson
2008-12-17
2
-0/+107
*
#3632: the "pyo" macro from gdbinit can now run when the GIL is released.
Amaury Forgeot d'Arc
2008-12-15
1
-0/+3
*
Issue #4509: bugs in bytearray with exports (buffer protocol)
Antoine Pitrou
2008-12-06
1
-11/+31
*
Issue #4445: save 3 bytes (on average, on a typical machine) per
Mark Dickinson
2008-12-05
1
-13/+21
*
Backport r67478
Raymond Hettinger
2008-12-03
1
-8/+9
*
Fix a small typo in docstring
Amaury Forgeot d'Arc
2008-11-29
1
-1/+1
*
make sure that bytearray methods return a new bytearray even if there is no c...
Benjamin Peterson
2008-11-19
1
-21/+3
*
when __getattr__ is a descriptor, call it correctly; fixes #4230
Benjamin Peterson
2008-11-17
1
-3/+36
*
#4069: aSet.remove(otherSet) would always report the empty frozenset([]) as t...
Amaury Forgeot d'Arc
2008-10-07
1
-4/+7
*
Punctuation fix; expand dict.update docstring to be clearer
Andrew M. Kuchling
2008-10-04
1
-4/+6
*
Docstring change for *partition: use same tense as other docstrings.
Andrew M. Kuchling
2008-10-04
2
-13/+13
*
Docstring changes: Specify exceptions raised
Andrew M. Kuchling
2008-10-04
1
-3/+6
*
Docstring change: Specify exception raised
Andrew M. Kuchling
2008-10-04
1
-1/+3
*
Use correct capitalization of NaN
Andrew M. Kuchling
2008-10-04
1
-2/+2
*
Mention exception in docstring
Andrew M. Kuchling
2008-10-03
1
-1/+2
*
Fixed a couple more C99 comments and one occurence of inline.
Christian Heimes
2008-10-02
1
-15/+15
*
Fixed a comment to C89 style as of http://drj11.wordpress.com/2008/10/02/pyth...
Christian Heimes
2008-10-02
1
-1/+1
*
#3967: Correct a crash in count() and find() methods of string-like objects.
Amaury Forgeot d'Arc
2008-09-26
2
-8/+6
*
#3965: on Windows, open() crashes if the filename or the mode is invalid,
Amaury Forgeot d'Arc
2008-09-25
1
-4/+11
*
Bug #3951: Py_USING_MEMORY_DEBUGGER should not be enabled by default.
Martin v. Löwis
2008-09-25
1
-1/+1
*
should use macro'ed symbols not direct
Andrew MacIntyre
2008-09-22
1
-3/+3
*
Issue #3642: Suppress warning in obmalloc when size_t is
Martin v. Löwis
2008-09-11
1
-1/+3
*
Issue #3811: The Unicode database was updated to 5.1.
Martin v. Löwis
2008-09-10
2
-758/+921
*
Fix #3634 invalid return value from _weakref.ref(Exception).__init__
Benjamin Peterson
2008-09-09
1
-1/+1
*
Fix varname in docstring. #3822.
Georg Brandl
2008-09-09
1
-2/+2
[next]