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
/
Misc
Commit message (
Expand
)
Author
Age
Files
Lines
*
Patch #1462488: prevent a segfault in object_reduce_ex() by splitting
Žiga Seilnacht
2007-03-15
1
-0/+3
*
Patch #1681153: the wave module now closes a file object it opened if
Georg Brandl
2007-03-15
1
-0/+3
*
Patch #1559413: Fix test_cmd_line if sys.executable contains a space.
Martin v. Löwis
2007-03-14
1
-0/+2
*
Document fixed bugs
Barry Warsaw
2007-03-14
1
-0/+5
*
Patch #1680015: Don't modify __slots__ tuple if it contains an unicode
Žiga Seilnacht
2007-03-14
1
-0/+3
*
Bug #767111: fix long-standing bug in urllib which caused an
Georg Brandl
2007-03-14
1
-0/+4
*
Bug #1622896: fix a rare corner case where the bz2 module raised an
Georg Brandl
2007-03-13
1
-0/+3
*
Patch #1449244: Support Unicode strings in
Martin v. Löwis
2007-03-13
1
-0/+3
*
Patch #1569798: fix a bug in distutils when building Python from a
Georg Brandl
2007-03-13
1
-0/+3
*
Patch #1542681: add entries for "with", "as" and "CONTEXTMANAGERS" to
Georg Brandl
2007-03-13
1
-0/+3
*
Patch #1679379: add documentation for fnmatch.translate().
Georg Brandl
2007-03-13
1
-0/+2
*
Bug #742342: make Python stop segfaulting on infinitely-recursive reload()s. ...
Collin Winter
2007-03-12
1
-0/+3
*
Bug #1675511: Use -Kpic instead of -xcode=pic32 on Solaris/x86.
Martin v. Löwis
2007-03-12
1
-0/+2
*
Patch #1192590: Fix pdb's "ignore" and "condition" commands so they trap the ...
Collin Winter
2007-03-11
1
-0/+3
*
Patch #1675981: remove unreachable code from type.__new__() method.
Žiga Seilnacht
2007-03-11
1
-0/+2
*
Revert rev. 54198, it's not really backwards compatible.
Georg Brandl
2007-03-10
1
-3/+0
*
Bug #1531963: Make SocketServer.TCPServer's server_address always be equal to...
Collin Winter
2007-03-10
1
-0/+5
*
Merged revisions 54248 via svnmerge from
Thomas Heller
2007-03-09
1
-0/+2
*
Merged revisions 54244 via svnmerge from
Thomas Heller
2007-03-09
1
-0/+3
*
Manual backport of r54233. This will help prevent spurious Buildbot failures
Brett Cannon
2007-03-09
1
-0/+3
*
SF #1637850: make_table in difflib did not work with unicode
Raymond Hettinger
2007-03-08
1
-0/+2
*
SF 1676321: empty() returned wrong result
Raymond Hettinger
2007-03-08
1
-0/+2
*
Add a NEWS entry for rev. 54207,8.
Georg Brandl
2007-03-08
1
-0/+6
*
Patch #1001604: glob.glob() now returns unicode filenames if it was
Georg Brandl
2007-03-07
1
-0/+3
*
Document curses changes.
Walter Dörwald
2007-03-06
1
-0/+3
*
Patch #1654417: make operator.{get,set,del}slice use the full range
Georg Brandl
2007-03-06
1
-0/+3
*
Patch #1638879: don't accept strings with embedded NUL bytes in long().
Georg Brandl
2007-03-06
1
-0/+2
*
Patch #1646728: datetime.fromtimestamp fails with negative
Georg Brandl
2007-03-06
1
-0/+3
*
Bug #1674503: close the file opened by execfile() in an error condition.
Georg Brandl
2007-03-06
1
-0/+2
*
Patch #1671450: add a section about subclassing builtin types to the
Georg Brandl
2007-03-06
1
-0/+3
*
Patch #1674228: when assigning a slice (old-style), check for the
Georg Brandl
2007-03-05
1
-0/+3
*
Fix constantification of None.
Raymond Hettinger
2007-03-02
1
-0/+3
*
Fix SF bug #1669182. Handle string exceptions even if unraisable (ie in __de...
Neal Norwitz
2007-02-26
1
-0/+3
*
Backport 53901 and 53902 to prevent crash when there is an error decoding uni...
Neal Norwitz
2007-02-25
1
-0/+2
*
Revert r53672, just fix signature of time_isoformat instead.
Martin v. Löwis
2007-02-18
1
-1/+1
*
Patch #1494140: Add documentation for the new struct.Struct object.
Georg Brandl
2007-02-15
1
-0/+2
*
Patch #1657276: Make NETLINK_DNRTMSG conditional.
Martin v. Löwis
2007-02-13
1
-0/+2
*
Patch #685268: Consider a package's __path__ in imputil.
Martin v. Löwis
2007-02-13
1
-0/+2
*
Patch 1463026: Support default namespace in XMLGenerator.
Martin v. Löwis
2007-02-12
1
-0/+2
*
backport: fix trace.py --ignore-dir
Skip Montanaro
2007-02-11
1
-0/+3
*
Bug #1600860: Search for shared python library in LIBDIR, not
Martin v. Löwis
2007-02-09
1
-0/+3
*
Bug #1653736: Properly discard third argument to slot_nb_inplace_power.
Martin v. Löwis
2007-02-09
1
-0/+2
*
Bug #1653736: Complain about keyword arguments to time.isoformat.
Martin v. Löwis
2007-02-08
1
-0/+2
*
Do not let overflows in enumerate() and count() pass silently.
Raymond Hettinger
2007-02-07
1
-0/+4
*
Bug #1575169: operator.isSequenceType() now returns False for subclasses of d...
Raymond Hettinger
2007-02-07
1
-0/+2
*
Check for a common user error with defaultdict().
Raymond Hettinger
2007-02-07
1
-0/+2
*
Applied patch 1124861.3.patch to solve bug #1124861: Automatically create pip...
Peter Astrand
2007-02-06
1
-0/+3
*
Bug #1648179: set.update() not recognizing __iter__ overrides in dict subcla...
Raymond Hettinger
2007-02-01
1
-0/+3
*
[Patch #783050 from Patrick Lynch] The emulation of forkpty() is incorrect;
Georg Brandl
2007-01-31
1
-0/+3
*
Patch #1638243: the compiler package is now able to correctly compile
Georg Brandl
2007-01-27
1
-0/+4
[next]