Skip to content

Commit 2eeea68

Browse files
committed
Merged revisions 68750,68811,68945,69157 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r68750 | benjamin.peterson | 2009-01-18 22:47:04 +0000 (So, 18 Jan 2009) | 1 line fix encoding cookie case ........ r68811 | benjamin.peterson | 2009-01-20 18:58:27 +0000 (Di, 20 Jan 2009) | 1 line fix url ........ r68945 | tarek.ziade | 2009-01-25 22:11:04 +0000 (So, 25 Jan 2009) | 1 line added missing module docstring ........ r69157 | benjamin.peterson | 2009-01-31 23:43:25 +0000 (Sa, 31 Jan 2009) | 1 line add explanatory comment ........
1 parent 32b8c4a commit 2eeea68

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

Lib/distutils/command/install_lib.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# This module should be kept compatible with Python 2.1.
2+
"""distutils.command.install_lib
3+
4+
Implements the Distutils 'install_lib' command
5+
(install all Python modules)."""
26

37
__revision__ = "$Id$"
48

Lib/heapq.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# -*- coding: Latin-1 -*-
1+
# -*- coding: latin-1 -*-
22

33
"""Heap queue algorithm (a.k.a. priority queue).
44

Objects/stringlib/fastsearch.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
/* fast search/count implementation, based on a mix between boyer-
77
moore and horspool, with a few more bells and whistles on the top.
8-
for some more background, see: http://effbot.org/stringlib */
8+
for some more background, see: http://effbot.org/stringlib.htm */
99

1010
/* note: fastsearch may access s[n], which isn't a problem when using
1111
Python's ordinary string types, but may cause problems if you're

0 commit comments

Comments
 (0)