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
/
Lib
Commit message (
Expand
)
Author
Age
Files
Lines
*
Bug #1512814, Fix incorrect lineno's when code within a function
Neal Norwitz
2006-07-16
1
-0/+24
*
Patch #1220874: Update the binhex module for Mach-O.
Bob Ippolito
2006-07-15
1
-16/+9
*
Patch #1521817: The index range checking on ctypes arrays containing
Thomas Heller
2006-07-14
1
-65/+0
*
Bug #1223937: CalledProcessError.errno -> CalledProcessError.returncode.
Peter Astrand
2006-07-14
2
-9/+14
*
Fix #1521375. When running with root priviledges, 'gcc -o /dev/null'
Thomas Heller
2006-07-13
1
-1/+9
*
Fix #1467450: ctypes now uses RTLD_GLOBAL by default on OSX 10.3 to
Thomas Heller
2006-07-12
1
-1/+18
*
Bug #1520864: unpacking singleton tuples in for loop (for x, in) work again.
Neal Norwitz
2006-07-12
1
-0/+5
*
Change the ctypes version number to 1.0.0.
Thomas Heller
2006-07-11
1
-1/+1
*
When a foreign function is retrived by calling __getitem__ on a ctypes
Thomas Heller
2006-07-11
1
-2/+3
*
Whitespace normalization.
v2.5b2
Tim Peters
2006-07-11
1
-1/+1
*
Patch #1519566: Remove unused _tofill member.
Martin v. Löwis
2006-07-10
1
-12/+23
*
Whitespace normalization.
Tim Peters
2006-07-10
1
-1/+1
*
After approval from Anthony, merge the tim-current_frames
Tim Peters
2006-07-10
1
-0/+61
*
Make it possible to run test_subprocess.py with Python 2.2, which lacks test_...
Peter Astrand
2006-07-10
1
-3/+6
*
Fix SF#1457312: bad socket error handling in distutils "upload" command.
Phillip J. Eby
2006-07-10
1
-1/+1
*
Fix SF#1516184 and add a test to prevent regression.
Phillip J. Eby
2006-07-10
2
-12/+19
*
Assigning None to pointer type structure fields possible overwrote
Thomas Heller
2006-07-10
1
-0/+10
*
Fix bug #1518190: accept any integer or long value in the
Thomas Heller
2006-07-10
1
-0/+17
*
preparing for 2.5b2
Anthony Baxter
2006-07-10
2
-1/+6
*
Change error message to indicate that VS2003 is necessary to build extension ...
Martin v. Löwis
2006-07-10
1
-1/+1
*
Introduce DISTUTILS_USE_SDK as a flag to determine whether the
Martin v. Löwis
2006-07-10
1
-1/+1
*
Part of SF patch #1484695. This removes dead code. The chksum was
Neal Norwitz
2006-07-10
1
-7/+0
*
Fix doco. Backport candidate.
Neal Norwitz
2006-07-10
1
-1/+1
*
Bug #1512814, Fix incorrect lineno's when code at module scope
Neal Norwitz
2006-07-10
1
-0/+10
*
On 64 bit systems, int literals that use less than 64 bits are now ints
Neal Norwitz
2006-07-09
1
-0/+15
*
Fix SF bug 1441486: bad unary minus folding in compiler.
Neil Schemenauer
2006-07-09
1
-0/+4
*
Fix AST compiler bug #1501934: incorrect LOAD/STORE_GLOBAL generation.
Neil Schemenauer
2006-07-09
2
-1/+12
*
Whitespace normalization.
Tim Peters
2006-07-08
1
-2/+2
*
Add an additional test for bug #1519018.
Georg Brandl
2006-07-08
1
-0/+2
*
Fix SF bug #1519018: 'as' is now validated properly in import statements
Neal Norwitz
2006-07-08
1
-0/+4
*
Restore rev 47014:
Neal Norwitz
2006-07-07
4
-5/+32
*
Properly generate logical file ids. Fixes #1515998.
Martin v. Löwis
2006-07-06
1
-4/+6
*
Test using all CJK encodings for the testcases which don't require
Hye-Shik Chang
2006-07-06
1
-6/+26
*
Add a testcase for r47086 which fixed a bug in codec_getstreamcodec().
Hye-Shik Chang
2006-07-06
1
-1/+9
*
Ignore ImportWarning by default
Nick Coghlan
2006-07-06
1
-0/+1
*
Revert the __module_name__ changes made in rev 47142. We'll revisit this in P...
Nick Coghlan
2006-07-06
2
-34/+18
*
added XMLParser alias for cElementTree compatibility
Fredrik Lundh
2006-07-06
1
-1/+4
*
Patch #1517790: It is now possible to use custom objects in the ctypes
Thomas Heller
2006-07-06
1
-0/+35
*
The test that calls a function with invalid arguments and catches the
Thomas Heller
2006-07-06
1
-9/+5
*
A couple of examples about how to attack the fact that _PyType_Lookup()
Armin Rigo
2006-07-06
2
-0/+67
*
Revert the change done in svn revision 47206:
Thomas Heller
2006-07-06
1
-5/+9
*
Fix bug in passing tuples to string.Template. All other values (with working
Thomas Wouters
2006-07-05
2
-3/+10
*
Put method-wrappers into trashcan. Fixes #927248.
Martin v. Löwis
2006-07-03
1
-0/+8
*
Patch #825417: Fix timeout processing in expect,
Martin v. Löwis
2006-07-03
1
-1/+15
*
Bug #1267547: Put proper recursive setup.py call into the
Martin v. Löwis
2006-07-03
1
-3/+4
*
Bug #1417699: Reject locale-specific decimal point in float()
Martin v. Löwis
2006-07-03
2
-3/+17
*
Bug #1514693: Update turtle's heading when switching between
Martin v. Löwis
2006-07-03
1
-1/+6
*
Reimplement turtle.circle using a polyline, to allow correct
Martin v. Löwis
2006-07-03
1
-48/+14
*
Only setup canvas when it is first created.
Martin v. Löwis
2006-07-03
1
-1/+1
*
Whitespace normalization.
Tim Peters
2006-07-03
1
-1/+1
[next]