Skip to content

Commit a9d91bd

Browse files
author
thomas.wouters
committed
Merged revisions 53451-53537 via svnmerge from svn+ssh://[email protected]/python/trunk ........ r53454 | brett.cannon | 2007-01-15 20:12:08 +0100 (Mon, 15 Jan 2007) | 3 lines Add a note for strptime that just because strftime supports some extra directive that is not documented that strptime will as well. ........ r53458 | vinay.sajip | 2007-01-16 10:50:07 +0100 (Tue, 16 Jan 2007) | 1 line Updated rotating file handlers to use _open(). ........ r53459 | marc-andre.lemburg | 2007-01-16 14:03:06 +0100 (Tue, 16 Jan 2007) | 2 lines Add news items for the recent pybench and platform changes. ........ r53460 | sjoerd.mullender | 2007-01-16 17:42:38 +0100 (Tue, 16 Jan 2007) | 4 lines Fixed ntpath.expandvars to not replace references to non-existing variables with nothing. Also added tests. This fixes bug #494589. ........ r53464 | neal.norwitz | 2007-01-17 07:23:51 +0100 (Wed, 17 Jan 2007) | 1 line Give Calvin Spealman access for python-dev summaries. ........ r53465 | neal.norwitz | 2007-01-17 09:37:26 +0100 (Wed, 17 Jan 2007) | 1 line Remove Calvin since he only has access to the website currently. ........ r53466 | thomas.heller | 2007-01-17 10:40:34 +0100 (Wed, 17 Jan 2007) | 2 lines Replace C++ comments with C comments. ........ r53472 | andrew.kuchling | 2007-01-17 20:55:06 +0100 (Wed, 17 Jan 2007) | 1 line [Part of bug #1599254] Add suggestion to Mailbox docs to use Maildir, and warn user to lock/unlock mailboxes when modifying them ........ r53475 | georg.brandl | 2007-01-17 22:09:04 +0100 (Wed, 17 Jan 2007) | 2 lines Bug #1637967: missing //= operator in list. ........ r53477 | georg.brandl | 2007-01-17 22:19:58 +0100 (Wed, 17 Jan 2007) | 2 lines Bug #1629125: fix wrong data type (int -> Py_ssize_t) in PyDict_Next docs. ........ r53481 | neal.norwitz | 2007-01-18 06:40:58 +0100 (Thu, 18 Jan 2007) | 1 line Try reverting part of r53145 that seems to cause the Windows buildbots to fail in test_uu.UUFileTest.test_encode ........ r53482 | fred.drake | 2007-01-18 06:42:30 +0100 (Thu, 18 Jan 2007) | 1 line add missing version entry ........ r53483 | neal.norwitz | 2007-01-18 07:20:55 +0100 (Thu, 18 Jan 2007) | 7 lines This test doesn't pass on Windows. The cause seems to be that chmod doesn't support the same funcationality as on Unix. I'm not sure if this fix is the best (or if it will even work)--it's a test to see if the buildbots start passing again. It might be better to not even run this test if it's windows (or non-posix). ........ r53488 | neal.norwitz | 2007-01-19 06:53:33 +0100 (Fri, 19 Jan 2007) | 1 line SF #1635217, Fix unbalanced paren ........ r53489 | martin.v.loewis | 2007-01-19 07:42:22 +0100 (Fri, 19 Jan 2007) | 3 lines Prefix AST symbols with _Py_. Fixes #1637022. Will backport. ........ r53497 | martin.v.loewis | 2007-01-19 19:01:38 +0100 (Fri, 19 Jan 2007) | 2 lines Add UUIDs for 2.5.1 and 2.5.2 ........ r53499 | raymond.hettinger | 2007-01-19 19:07:18 +0100 (Fri, 19 Jan 2007) | 1 line SF# 1635892: Fix docs for betavariate's input parameters . ........ r53503 | martin.v.loewis | 2007-01-20 15:05:39 +0100 (Sat, 20 Jan 2007) | 2 lines Merge 53501 and 53502 from 25 branch: Add /GS- for AMD64 and Itanium builds where missing. ........ r53504 | walter.doerwald | 2007-01-20 18:28:31 +0100 (Sat, 20 Jan 2007) | 2 lines Port test_resource.py to unittest. ........ r53505 | walter.doerwald | 2007-01-20 19:19:33 +0100 (Sat, 20 Jan 2007) | 2 lines Add argument tests an calls of resource.getrusage(). ........ r53506 | walter.doerwald | 2007-01-20 20:03:17 +0100 (Sat, 20 Jan 2007) | 2 lines resource.RUSAGE_BOTH might not exist. ........ r53507 | walter.doerwald | 2007-01-21 00:07:28 +0100 (Sun, 21 Jan 2007) | 2 lines Port test_new.py to unittest. ........ r53508 | martin.v.loewis | 2007-01-21 10:33:07 +0100 (Sun, 21 Jan 2007) | 2 lines Patch #1610575: Add support for _Bool to struct. ........ r53509 | georg.brandl | 2007-01-21 11:28:43 +0100 (Sun, 21 Jan 2007) | 3 lines Bug #1486663: don't reject keyword arguments for subclasses of builtin types. ........ r53511 | georg.brandl | 2007-01-21 11:35:10 +0100 (Sun, 21 Jan 2007) | 2 lines Patch #1627441: close sockets properly in urllib2. ........ r53517 | georg.brandl | 2007-01-22 20:40:21 +0100 (Mon, 22 Jan 2007) | 3 lines Use new email module names (#1637162, #1637159, #1637157). ........ r53518 | andrew.kuchling | 2007-01-22 21:26:40 +0100 (Mon, 22 Jan 2007) | 1 line Improve pattern used for mbox 'From' lines; add a simple test ........ r53519 | andrew.kuchling | 2007-01-22 21:27:50 +0100 (Mon, 22 Jan 2007) | 1 line Make comment match the code ........ r53522 | georg.brandl | 2007-01-22 22:10:33 +0100 (Mon, 22 Jan 2007) | 2 lines Bug #1249573: fix rfc822.parsedate not accepting a certain date format ........ r53524 | georg.brandl | 2007-01-22 22:23:41 +0100 (Mon, 22 Jan 2007) | 2 lines Bug #1627316: handle error in condition/ignore pdb commands more gracefully. ........ r53526 | lars.gustaebel | 2007-01-23 12:17:33 +0100 (Tue, 23 Jan 2007) | 4 lines Patch #1507247: tarfile.py: use current umask for intermediate directories. ........ r53527 | thomas.wouters | 2007-01-23 14:42:00 +0100 (Tue, 23 Jan 2007) | 13 lines SF patch #1630975: Fix crash when replacing sys.stdout in sitecustomize When running the interpreter in an environment that would cause it to set stdout/stderr/stdin's encoding, having a sitecustomize that would replace them with something other than PyFile objects would crash the interpreter. Fix it by simply ignoring the encoding-setting for non-files. This could do with a test, but I can think of no maintainable and portable way to test this bug, short of adding a sitecustomize.py to the buildsystem and have it always run with it (hmmm....) ........ r53528 | thomas.wouters | 2007-01-23 14:50:49 +0100 (Tue, 23 Jan 2007) | 4 lines Add news entry about last checkin (oops.) ........ r53531 | martin.v.loewis | 2007-01-23 22:11:47 +0100 (Tue, 23 Jan 2007) | 4 lines Make PyTraceBack_Here use the current thread, not the frame's thread state. Fixes #1579370. Will backport. ........ r53535 | brett.cannon | 2007-01-24 00:21:22 +0100 (Wed, 24 Jan 2007) | 5 lines Fix crasher for when an object's __del__ creates a new weakref to itself. Patch only fixes new-style classes; classic classes still buggy. Closes bug #1377858. Already backported. ........ r53536 | walter.doerwald | 2007-01-24 01:42:19 +0100 (Wed, 24 Jan 2007) | 2 lines Port test_popen.py to unittest. ........ git-svn-id: http://svn.python.org/projects/python/branches/p3yk@53610 6015fed2-1504-0410-9fe1-9d1591cc4771
1 parent bee2fa3 commit a9d91bd

77 files changed

Lines changed: 1445 additions & 523 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Doc/api/concrete.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2082,7 +2082,7 @@ \subsection{Dictionary Objects \label{dictObjects}}
20822082

20832083
\begin{verbatim}
20842084
PyObject *key, *value;
2085-
int pos = 0;
2085+
Py_ssize_t pos = 0;
20862086
20872087
while (PyDict_Next(self->dict, &pos, &key, &value)) {
20882088
/* do something interesting with the values... */
@@ -2097,7 +2097,7 @@ \subsection{Dictionary Objects \label{dictObjects}}
20972097

20982098
\begin{verbatim}
20992099
PyObject *key, *value;
2100-
int pos = 0;
2100+
Py_ssize_t pos = 0;
21012101
21022102
while (PyDict_Next(self->dict, &pos, &key, &value)) {
21032103
int i = PyInt_AS_LONG(value) + 1;

Doc/commontex/license.tex

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ \section{History of the software}
5050
\linev{2.4.1}{2.4}{2005}{PSF}{yes}
5151
\linev{2.4.2}{2.4.1}{2005}{PSF}{yes}
5252
\linev{2.4.3}{2.4.2}{2006}{PSF}{yes}
53+
\linev{2.4.4}{2.4.3}{2006}{PSF}{yes}
5354
\linev{2.5}{2.4}{2006}{PSF}{yes}
5455
\end{tablev}
5556

Doc/dist/dist.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -692,7 +692,7 @@ \section{Relationships between Distributions and Packages}
692692

693693
\begin{tableii}{l|l}{code}{Provides Expression}{Explanation}
694694
\lineii{mypkg} {Provide \code{mypkg}, using the distribution version}
695-
\lineii{mypkg (1.1} {Provide \code{mypkg} version 1.1, regardless of the
695+
\lineii{mypkg (1.1)} {Provide \code{mypkg} version 1.1, regardless of the
696696
distribution version}
697697
\end{tableii}
698698

Doc/lib/libmailbox.tex

Lines changed: 57 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -25,22 +25,29 @@ \subsection{\class{Mailbox} objects}
2525
A mailbox, which may be inspected and modified.
2626
\end{classdesc*}
2727

28+
The \class{Mailbox} class defines an interface and
29+
is not intended to be instantiated. Instead, format-specific
30+
subclasses should inherit from \class{Mailbox} and your code
31+
should instantiate a particular subclass.
32+
2833
The \class{Mailbox} interface is dictionary-like, with small keys
29-
corresponding to messages. Keys are issued by the \class{Mailbox} instance
30-
with which they will be used and are only meaningful to that \class{Mailbox}
31-
instance. A key continues to identify a message even if the corresponding
32-
message is modified, such as by replacing it with another message. Messages may
33-
be added to a \class{Mailbox} instance using the set-like method
34-
\method{add()} and removed using a \code{del} statement or the set-like methods
35-
\method{remove()} and \method{discard()}.
34+
corresponding to messages. Keys are issued by the \class{Mailbox}
35+
instance with which they will be used and are only meaningful to that
36+
\class{Mailbox} instance. A key continues to identify a message even
37+
if the corresponding message is modified, such as by replacing it with
38+
another message.
39+
40+
Messages may be added to a \class{Mailbox} instance using the set-like
41+
method \method{add()} and removed using a \code{del} statement or the
42+
set-like methods \method{remove()} and \method{discard()}.
3643

3744
\class{Mailbox} interface semantics differ from dictionary semantics in some
38-
noteworthy ways. Each time a message is requested, a new representation
39-
(typically a \class{Message} instance) is generated, based upon the current
40-
state of the mailbox. Similarly, when a message is added to a \class{Mailbox}
41-
instance, the provided message representation's contents are copied. In neither
42-
case is a reference to the message representation kept by the \class{Mailbox}
43-
instance.
45+
noteworthy ways. Each time a message is requested, a new
46+
representation (typically a \class{Message} instance) is generated
47+
based upon the current state of the mailbox. Similarly, when a message
48+
is added to a \class{Mailbox} instance, the provided message
49+
representation's contents are copied. In neither case is a reference
50+
to the message representation kept by the \class{Mailbox} instance.
4451

4552
The default \class{Mailbox} iterator iterates over message representations, not
4653
keys as the default dictionary iterator does. Moreover, modification of a
@@ -51,9 +58,14 @@ \subsection{\class{Mailbox} objects}
5158
\exception{KeyError} exception if the corresponding message is subsequently
5259
removed.
5360

54-
\class{Mailbox} itself is intended to define an interface and to be inherited
55-
from by format-specific subclasses but is not intended to be instantiated.
56-
Instead, you should instantiate a subclass.
61+
Be very cautious when modifying mailboxes that might also be changed
62+
by some other process. The safest mailbox format to use for such
63+
tasks is Maildir; try to avoid using single-file formats such as mbox
64+
for concurrent writing. If you're modifying a mailbox, no matter what
65+
the format, you must lock it by calling the \method{lock()} and
66+
\method{unlock()} methods before making any changes. Failing to lock
67+
the mailbox runs the risk of losing data if some other process makes
68+
changes to the mailbox while your Python code is running.
5769

5870
\class{Mailbox} instances have the following methods:
5971

@@ -202,15 +214,16 @@ \subsection{\class{Mailbox} objects}
202214

203215
\begin{methoddesc}{flush}{}
204216
Write any pending changes to the filesystem. For some \class{Mailbox}
205-
subclasses, changes are always written immediately and this method does
206-
nothing.
217+
subclasses, changes are always written immediately and \method{flush()} does
218+
nothing, but you should still make a habit of calling this method.
207219
\end{methoddesc}
208220

209221
\begin{methoddesc}{lock}{}
210222
Acquire an exclusive advisory lock on the mailbox so that other processes know
211223
not to modify it. An \exception{ExternalClashError} is raised if the lock is
212224
not available. The particular locking mechanisms used depend upon the mailbox
213-
format.
225+
format. You should \emph{always} lock the mailbox before making any
226+
modifications to its contents.
214227
\end{methoddesc}
215228

216229
\begin{methoddesc}{unlock}{}
@@ -1373,36 +1386,55 @@ \subsection{Examples}
13731386
\begin{verbatim}
13741387
import mailbox
13751388
destination = mailbox.MH('~/Mail')
1389+
destination.lock()
13761390
for message in mailbox.Babyl('~/RMAIL'):
13771391
destination.add(MHMessage(message))
1392+
destination.flush()
1393+
destination.unlock()
13781394
\end{verbatim}
13791395
1380-
An example of sorting mail from numerous mailing lists, being careful to avoid
1381-
mail corruption due to concurrent modification by other programs, mail loss due
1382-
to interruption of the program, or premature termination due to malformed
1383-
messages in the mailbox:
1396+
This example sorts mail from several mailing lists into different
1397+
mailboxes, being careful to avoid mail corruption due to concurrent
1398+
modification by other programs, mail loss due to interruption of the
1399+
program, or premature termination due to malformed messages in the
1400+
mailbox:
13841401
13851402
\begin{verbatim}
13861403
import mailbox
13871404
import email.Errors
1405+
13881406
list_names = ('python-list', 'python-dev', 'python-bugs')
1407+
13891408
boxes = dict((name, mailbox.mbox('~/email/%s' % name)) for name in list_names)
1390-
inbox = mailbox.Maildir('~/Maildir', None)
1409+
inbox = mailbox.Maildir('~/Maildir', factory=None)
1410+
13911411
for key in inbox.iterkeys():
13921412
try:
13931413
message = inbox[key]
13941414
except email.Errors.MessageParseError:
13951415
continue # The message is malformed. Just leave it.
1416+
13961417
for name in list_names:
13971418
list_id = message['list-id']
13981419
if list_id and name in list_id:
1420+
# Get mailbox to use
13991421
box = boxes[name]
1422+
1423+
# Write copy to disk before removing original.
1424+
# If there's a crash, you might duplicate a message, but
1425+
# that's better than losing a message completely.
14001426
box.lock()
14011427
box.add(message)
1402-
box.flush() # Write copy to disk before removing original.
1428+
box.flush()
14031429
box.unlock()
1430+
1431+
# Remove original message
1432+
inbox.lock()
14041433
inbox.discard(key)
1434+
inbox.flush()
1435+
inbox.unlock()
14051436
break # Found destination, so stop looking.
1437+
14061438
for box in boxes.itervalues():
14071439
box.close()
14081440
\end{verbatim}

Doc/lib/librandom.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ \section{\module{random} ---
185185

186186
\begin{funcdesc}{betavariate}{alpha, beta}
187187
Beta distribution. Conditions on the parameters are
188-
\code{\var{alpha} > -1} and \code{\var{beta} > -1}.
188+
\code{\var{alpha} > 0} and \code{\var{beta} > 0}.
189189
Returned values range between 0 and 1.
190190
\end{funcdesc}
191191

Doc/lib/libstruct.tex

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,15 @@ \section{\module{struct} ---
5050
\lineiv{c}{\ctype{char}}{string of length 1}{}
5151
\lineiv{b}{\ctype{signed char}}{integer}{}
5252
\lineiv{B}{\ctype{unsigned char}}{integer}{}
53+
\lineiv{t}{\ctype{_Bool}}{bool}{(1)}
5354
\lineiv{h}{\ctype{short}}{integer}{}
5455
\lineiv{H}{\ctype{unsigned short}}{integer}{}
5556
\lineiv{i}{\ctype{int}}{integer}{}
5657
\lineiv{I}{\ctype{unsigned int}}{long}{}
5758
\lineiv{l}{\ctype{long}}{integer}{}
5859
\lineiv{L}{\ctype{unsigned long}}{long}{}
59-
\lineiv{q}{\ctype{long long}}{long}{(1)}
60-
\lineiv{Q}{\ctype{unsigned long long}}{long}{(1)}
60+
\lineiv{q}{\ctype{long long}}{long}{(2)}
61+
\lineiv{Q}{\ctype{unsigned long long}}{long}{(2)}
6162
\lineiv{f}{\ctype{float}}{float}{}
6263
\lineiv{d}{\ctype{double}}{float}{}
6364
\lineiv{s}{\ctype{char[]}}{string}{}
@@ -70,6 +71,11 @@ \section{\module{struct} ---
7071

7172
\begin{description}
7273
\item[(1)]
74+
The \character{t} conversion code corresponds to the \ctype{_Bool} type
75+
defined by C99. If this type is not available, it is simulated using a
76+
\ctype{char}. In standard mode, it is always represented by one byte.
77+
\versionadded{2.6}
78+
\item[(2)]
7379
The \character{q} and \character{Q} conversion codes are available in
7480
native mode only if the platform C compiler supports C \ctype{long long},
7581
or, on Windows, \ctype{__int64}. They are always available in standard
@@ -118,6 +124,12 @@ \section{\module{struct} ---
118124
meaning a Python long integer will be used to hold the pointer; other
119125
platforms use 32-bit pointers and will use a Python integer.
120126

127+
For the \character{t} format character, the return value is either
128+
\constant{True} or \constant{False}. When packing, the truth value
129+
of the argument object is used. Either 0 or 1 in the native or standard
130+
bool representation will be packed, and any non-zero value will be True
131+
when unpacking.
132+
121133
By default, C numbers are represented in the machine's native format
122134
and byte order, and properly aligned by skipping pad bytes if
123135
necessary (according to the rules used by the C compiler).
@@ -151,6 +163,7 @@ \section{\module{struct} ---
151163
\ctype{long long} (\ctype{__int64} on Windows) is 8 bytes;
152164
\ctype{float} and \ctype{double} are 32-bit and 64-bit
153165
IEEE floating point numbers, respectively.
166+
\ctype{_Bool} is 1 byte.
154167

155168
Note the difference between \character{@} and \character{=}: both use
156169
native byte order, but the size and alignment of the latter is

Doc/lib/libtime.tex

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -324,6 +324,12 @@ \section{\module{time} ---
324324
it is platform-specific except for recognizing UTC and GMT which are
325325
always known (and are considered to be non-daylight savings
326326
timezones).
327+
328+
Only the directives specified in the documentation are supported. Because
329+
\code{strftime()} is implemented per platform it can sometimes offer more
330+
directives than those listed. But \code{strptime()} is independent of any
331+
platform and thus does not necessarily support all directives available that
332+
are not documented as supported.
327333
\end{funcdesc}
328334

329335
\begin{datadesc}{struct_time}

Doc/ref/ref3.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1997,8 +1997,8 @@ \subsection{Emulating numeric types\label{numeric-types}}
19971997
\methodline[numeric object]{__ixor__}{self, other}
19981998
\methodline[numeric object]{__ior__}{self, other}
19991999
These methods are called to implement the augmented arithmetic
2000-
operations (\code{+=}, \code{-=}, \code{*=}, \code{/=}, \code{\%=},
2001-
\code{**=}, \code{<<=}, \code{>>=}, \code{\&=},
2000+
operations (\code{+=}, \code{-=}, \code{*=}, \code{/=}, \code{//=},
2001+
\code{\%=}, \code{**=}, \code{<<=}, \code{>>=}, \code{\&=},
20022002
\code{\textasciicircum=}, \code{|=}). These methods should attempt to do the
20032003
operation in-place (modifying \var{self}) and return the result (which
20042004
could be, but does not have to be, \var{self}). If a specific method

0 commit comments

Comments
 (0)