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
*
Multi-arg form for set.difference() and set.difference_update().
Raymond Hettinger
2008-06-11
1
-14/+39
*
Merge in release25-maint r60793:
Gregory P. Smith
2008-06-11
3
-6/+27
*
Handle the case with zero arguments.
Raymond Hettinger
2008-06-11
1
-0/+3
*
Rename bytesobject.c back to stringobject.c to keep with the PyString theme.
Gregory P. Smith
2008-06-10
1
-0/+0
*
More reverting of r63675 per the mailing list discussions. This restores
Gregory P. Smith
2008-06-10
2
-479/+479
*
Issue 3048: Fixed sys.getsizeof for unicode objects.
Robert Schuppenies
2008-06-10
1
-0/+24
*
Added better pickling support to xrange objects.
Alexandre Vassalotti
2008-06-10
1
-3/+3
*
Issue 2582: Fix pickling of xrange objects.
Alexandre Vassalotti
2008-06-10
1
-0/+11
*
Let set.intersection() and set.intersection_update() take multiple input argu...
Raymond Hettinger
2008-06-09
1
-3/+36
*
Let set.union() and set.update() accept multiple inputs.
Raymond Hettinger
2008-06-09
1
-15/+38
*
This reverts r63675 based on the discussion in this thread:
Gregory P. Smith
2008-06-09
33
-610/+610
*
Remove locking part of new buffer protocol.
Travis E. Oliphant
2008-06-06
1
-6/+0
*
Fixed complex.__getnewargs__() to not emit another complex object.
Alexandre Vassalotti
2008-06-04
1
-1/+2
*
Some style nits. Also clarify in the docstrings what __sizeof__ does.
Georg Brandl
2008-06-01
5
-5/+5
*
Issue #2898: Added sys.getsizeof() to retrieve size of objects in bytes.
Robert Schuppenies
2008-06-01
5
-0/+69
*
New environment variable PYTHONIOENCODING.
Martin v. Löwis
2008-06-01
1
-3/+32
*
Refactor and clean up str.format() code (and helpers) in advance of optimizat...
Eric Smith
2008-05-30
6
-124/+138
*
#2999: fix name of third parameter in unicode.replace()'s docstring.
Georg Brandl
2008-05-30
1
-3/+3
*
Issue 2855: Fix obscure crasher by slowing down the entire module. Mimics wh...
Raymond Hettinger
2008-05-30
1
-0/+4
*
Revert #2990 patch; it's not necessary as Armin showed.
Georg Brandl
2008-05-29
1
-7/+5
*
#2990: prevent inconsistent state while updating method cache.
Georg Brandl
2008-05-28
1
-5/+7
*
#2989: add PyType_Modified().
Georg Brandl
2008-05-28
1
-10/+9
*
Renamed bytesobject.c to bytearrayobject.c
Christian Heimes
2008-05-26
3
-8054/+8054
*
Renamed PyString to PyBytes
Christian Heimes
2008-05-26
35
-1094/+1094
*
First step of the C API rename:
Christian Heimes
2008-05-26
4
-241/+241
*
#2592: delegate nb_index and the floor/truediv slots in weakref.proxy.
Georg Brandl
2008-05-20
1
-0/+10
*
Revert copy_reg -> copyreg rename.
Georg Brandl
2008-05-20
1
-3/+3
*
#2353: raise Py3k warning in file.xreadlines().
Georg Brandl
2008-05-17
1
-3/+12
*
Patch by Quentin Gallet-Gilles: Renaming leftovers for 2.6.
Alexandre Vassalotti
2008-05-16
1
-1/+1
*
Don't allow keyword arguments to reversed().
Georg Brandl
2008-05-16
1
-1/+4
*
Make generator repr consistent with function and code object repr.
Georg Brandl
2008-05-16
1
-1/+1
*
#2863: add gen.__name__ and add this name to generator repr().
Georg Brandl
2008-05-15
1
-2/+32
*
#2831: add start argument to enumerate(). Patch by Scott Dial and me.
Georg Brandl
2008-05-13
1
-5/+23
*
#2809 followup: even better split docstring.
Georg Brandl
2008-05-11
2
-4/+4
*
Addresses issue 2802: 'n' formatting for integers.
Eric Smith
2008-05-11
5
-3/+154
*
#2809: elaborate str.split docstring a bit.
Georg Brandl
2008-05-11
2
-3/+5
*
Added module stub for copy_reg renaming in 3.0.
Alexandre Vassalotti
2008-05-11
1
-22/+22
*
Backport fast alternate io.BytesIO implementation.
Alexandre Vassalotti
2008-05-09
1
-2/+2
*
Issue #2801: fix bug in float.is_integer where ValueError
Mark Dickinson
2008-05-09
1
-0/+1
*
Frozensets do not benefit from autoconversion.
Raymond Hettinger
2008-05-08
1
-3/+3
*
A little reformating of Py3k warnings
Benjamin Peterson
2008-04-27
7
-18/+16
*
Use PyErr_WarnPy3k throughout
Benjamin Peterson
2008-04-27
10
-49/+26
*
I finally got the time to update and merge Mark's and my trunk-math branch. T...
Christian Heimes
2008-04-18
5
-729/+167
*
Fix for possible signed overflow: the behaviour of -LONG_MIN is
Mark Dickinson
2008-04-15
1
-6/+19
*
Prevent namespace pollution, add static for internal functions
Neal Norwitz
2008-04-15
2
-5/+5
*
Backport manually r62342 from the py3k branch to the trunk.
Alexandre Vassalotti
2008-04-14
1
-17/+23
*
get rid of assert (size >= 0) now that an explicit if (size < 0) is in the code.
Gregory P. Smith
2008-04-10
3
-3/+0
*
Raise SystemError when size < 0 is passed into PyString_FromStringAndSize,
Gregory P. Smith
2008-04-09
3
-0/+18
*
Bug #2388: Fix gcc warnings when compiling with --enable-unicode=ucs4.
Martin v. Löwis
2008-04-07
3
-6/+25
*
Make file objects as thread safe as the underlying libc FILE* implementation.
Gregory P. Smith
2008-04-06
1
-81/+164
[next]