New submission from Yannick Gingras <[EMAIL PROTECTED]>:
EnvironmentError and its subclass OSError add the value of errno in
their error message. This value is an integer but the specific value
in an implementation detail and the C runtime recommends that
programmers use the symbolic
Yannick Gingras added the comment:
The attached patch is a proof of concept for throwing an exception.
As discussed on the mailing list [1], it has some shortcomings that
should be addressed before it is merged.
[1]: http://mail.python.org/pipermail/python-dev/2009-
--
keywords
New submission from Yannick Gingras :
In argparse.rst, while documenting ArgumentParser.add_subparsers, ``prog`` is
described on line 1630 as:
usage information that will be displayed with sub-command help,
by default the name of the program and any positional arguments
before the
Yannick Gingras added the comment:
Raymond, I would love to submit the PR if we reach a consensus on what the new
message should be. I'm a bit out of touch with how things work these days. Is
Github the best place to submit the PR?
Paul, very good digging! Reading the coding and ru