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
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Port test_binascii.py to PyUnit and enhance tests.
Walter Dörwald
2004-03-15
2
-152/+149
*
Revert last change. Found an application that was worse off with resize
Raymond Hettinger
2004-03-15
1
-13/+10
*
1. Bug in Patch 805830 fixed by Nigel Rowe
Kurt B. Kaiser
2004-03-15
2
-22/+26
*
Eliminate an unnecessary test on a common code path.
Raymond Hettinger
2004-03-15
1
-3/+1
*
Add missing docstrings.
Raymond Hettinger
2004-03-14
1
-0/+67
*
list_resize() now has an "exact" option for bypassing the overallocation
Raymond Hettinger
2004-03-14
1
-10/+13
*
SF feature request #686323: Minor array module enhancements
Raymond Hettinger
2004-03-14
4
-14/+51
*
Update the array overallocation scheme to match the approach used for
Raymond Hettinger
2004-03-14
2
-62/+79
*
Two issues spotted by Ronald OUssoren:
Jack Jansen
2004-03-13
4
-3/+2234
*
Don't use "dict" as a variable, it shadows the builtin. Spotted by
Jack Jansen
2004-03-13
1
-13/+13
*
compile.h and eval.h weren't being included which kept a fair bit of the
Skip Montanaro
2004-03-13
1
-0/+3
*
Force option should be applied to a single package, not recursively
Jack Jansen
2004-03-13
1
-1/+1
*
SF patch #906501: Fix typos in pystate.h comments
Raymond Hettinger
2004-03-13
1
-2/+2
*
SF patch #911431: robot.txt must be robots.txt
Raymond Hettinger
2004-03-13
2
-3/+3
*
SF bug #910986: copy.copy fails for array.array
Raymond Hettinger
2004-03-13
3
-0/+24
*
Make PySequence_Fast_ITEMS public. (Thanks Skip.)
Raymond Hettinger
2004-03-12
2
-4/+4
*
LIST_APPEND is predicably followed by JUMP_ABSOLUTE.
Raymond Hettinger
2004-03-12
1
-1/+5
*
* Eliminate duplicate call to PyObject_Size().
Raymond Hettinger
2004-03-12
1
-3/+3
*
Move the code for BREAK and CONTINUE_LOOP to be near FOR_ITER.
Raymond Hettinger
2004-03-12
1
-9/+9
*
Speedup for-loops by inlining PyIter_Next(). Saves duplicate tests
Raymond Hettinger
2004-03-12
1
-8/+10
*
Use a new macro, PySequence_Fast_ITEMS to factor out code common to
Raymond Hettinger
2004-03-12
4
-16/+19
*
- Added a downloader using urllib2 in stead of curl, based on code
Jack Jansen
2004-03-11
1
-51/+137
*
Now that list.extend() is at the root of many list operations, it becomes
Raymond Hettinger
2004-03-11
1
-3/+9
*
Eliminate a big block of duplicate code in PySequence_List() by
Raymond Hettinger
2004-03-11
3
-54/+13
*
list_inplace_concat() is now expressed in terms of list_extend() which
Raymond Hettinger
2004-03-11
1
-14/+13
*
Make buffer objects based on mutable objects (like array) safe.
Neil Schemenauer
2004-03-11
2
-82/+154
*
Document one of the many problems with the buffer object.
Neil Schemenauer
2004-03-11
1
-2/+9
*
Rename static functions, they should not have the _Py prefix.
Neil Schemenauer
2004-03-11
1
-11/+10
*
Make test_coercion.py less sensitive to platform fp quirks. Closes
Neil Schemenauer
2004-03-10
2
-333/+348
*
Use memcpy() instead of memmove() when the buffers are known to be distinct.
Raymond Hettinger
2004-03-10
1
-2/+2
*
Tidied up the implementations of reversed (including the custom ones
Raymond Hettinger
2004-03-10
4
-28/+58
*
Eliminate the double reverse option. It's only use case
Raymond Hettinger
2004-03-10
2
-17/+2
*
Optimize inner loops for subscript, repeat, and concat.
Raymond Hettinger
2004-03-09
2
-36/+59
*
Optimize slice assignments.
Raymond Hettinger
2004-03-09
1
-16/+17
*
SF Patch #912462: Relocate \end tag to the right place.
Hye-Shik Chang
2004-03-09
1
-1/+2
*
Refactor and optimize code for UNPACK_SEQUENCE.
Raymond Hettinger
2004-03-08
1
-27/+13
*
Remove calls to currentThread() in _Condition methods that were side-effect.
Brett Cannon
2004-03-08
1
-2/+0
*
The copy module now handles sets directly. The __copy__ methods are no
Raymond Hettinger
2004-03-08
1
-4/+0
*
SF patch #907403: Improvements to cStringIO.writelines()
Raymond Hettinger
2004-03-08
1
-0/+5
*
SF patch #907403: Improvements to cStringIO.writelines()
Raymond Hettinger
2004-03-08
2
-30/+27
*
Add a highlight theme for builtin keywords. Python Patch 805830 Nigel Rowe
Kurt B. Kaiser
2004-03-08
9
-16/+42
*
Removed spurious import statement
Vinay Sajip
2004-03-08
1
-2/+0
*
Optimize tuple_slice() and make further improvements to list_slice()
Raymond Hettinger
2004-03-08
3
-18/+28
*
Refactor the copy dispatcher code in copy.py. Simplifies and shortens
Raymond Hettinger
2004-03-08
1
-35/+17
*
Small optimizations for list_slice() and list_extend_internal().
Raymond Hettinger
2004-03-08
1
-9/+20
*
Factor out code common to PyDict_Copy() and PyDict_Merge().
Raymond Hettinger
2004-03-08
1
-20/+6
*
Deal with possible case of having time.tzname[1] containing UTC or GMT.
Brett Cannon
2004-03-07
1
-2/+2
*
SF patch #910929: Optimize list comprehensions
Raymond Hettinger
2004-03-07
6
-3/+20
*
update version at top of file
Skip Montanaro
2004-03-05
1
-2/+2
*
SF #904720: dict.update should take a 2-tuple sequence like dict.__init_
Raymond Hettinger
2004-03-04
11
-55/+91
[prev]
[next]