Changes by Kent Johnson :
--
nosy: -kjohnson
___
Python tracker
<http://bugs.python.org/issue17390>
___
___
Python-bugs-list mailing list
Unsubscribe:
Kent Johnson added the comment:
Note: this text does not appear in Doc/library/idle.rst so it does not have to
be corrected there.
--
___
Python tracker
<http://bugs.python.org/issue17
New submission from Kent Johnson:
The IDLE help text says, "Running without a subprocess: (DEPRECATED in Python
3.5 see Issue 16123)." According to the referenced issue, this feature is
scheduled to be deprecated in *3.4* and *removed* in 3.5. The attached patch
corrects the
Kent Johnson added the comment:
issue17390_editor_title.patch is not correct, it changes the title on any
window that inherits from EditorWindow, including the shell window. Here is a
new patch that changes short_title() instead of saved_change_hook(), so it can
be overridden by derived
Kent Johnson added the comment:
Attached patch deletes the referenced sentence.
--
keywords: +patch
nosy: +kjohnson
Added file: http://bugs.python.org/file19536/issue10303.diff
___
Python tracker
<http://bugs.python.org/issue10
New submission from Kent Johnson :
eval() is a known security hole. Since Python 2.6 ast.literal_eval() provides a
better alternative in many cases. literal_eval() is not as well known as eval()
and not easy to find even if you know it exists (but don't remember the name).
eval() com
New submission from Kent Johnson :
In Python 2.x, os.environ extends UserDict.IterableUserDict and
therefore os.environ.__repr__() shows the environment. This makes it
easy and intuitive to view the entire environment in the interactive
interpreter.
In Python 3.1, os.environ extends
New submission from Kent Johnson <[EMAIL PROTECTED]>:
In the docs for urllib2.BaseHandler previous to Python 2.6, the names of
the protocol_xxx() methods were spelled with 'protocol' in italics to
indicate that it is a placeholder; the actual method name is e.g.
htt
Changes by Kent Johnson <[EMAIL PROTECTED]>:
--
nosy: +kjohnson
___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue4017>
___
___
Python
Kent Johnson <[EMAIL PROTECTED]> added the comment:
On Thu, Oct 2, 2008 at 1:07 PM, Jesse Noller <[EMAIL PROTECTED]> wrote:
>
> Jesse Noller <[EMAIL PROTECTED]> added the comment:
>
> Which examples are you talking about Georg?
I think you mean me, not Georg...
New submission from Kent Johnson <[EMAIL PROTECTED]>:
In the docs for AsyncResult
http://docs.python.org/dev/library/multiprocessing.html#multiprocessing.pool.AsyncResult
"get([timeout)" is missing a ]
In the example following, it refers to pool.applyAsync() in two places;
the
New submission from Kent Johnson <[EMAIL PROTECTED]>:
The library reference for int() says, "If radix is zero, the proper
radix is guessed based on the contents of string; the interpretation is
the same as for integer literals." The use of the word 'guess' implies
th
Kent Johnson <[EMAIL PROTECTED]> added the comment:
For the itertools examples, perhaps you could remove the [ ] from the
result text so it doesn't look like a list. For example:
itertools.izip_longest([1,2,3], [1,2,3,4,5]) ->
(1, 1), (2, 2), (3, 3), (None
Kent Johnson <[EMAIL PROTECTED]> added the comment:
You should add something like the old "About this document" footer.
AFAICT there is no information in the new docs about how to report a
problem with the docs.
___
Python tracker <[EMAI
New submission from Kent Johnson <[EMAIL PROTECTED]>:
These are minor corrections to the What's New in Python 2.6[b3] doc.
Note: the PEP references are to the headers in What's New, not the
actual PEPs
- PEP 371: The multiprocessing Package
- "apply() or apply_a
New submission from Kent Johnson <[EMAIL PROTECTED]>:
The "Reporting Bugs" section of the Python 2.6b3 docs
http://docs.python.org/dev/bugs.html
says,
please use either the “Add a comment” or the “Suggest a change” features
of the relevant page in the most recent online docum
Kent Johnson <[EMAIL PROTECTED]> added the comment:
This issue seems to have foundered on finding an explanation for the
finer points of super(). Perhaps the glaring errors could at least be
corrected, or the fine points could be omitted or glossed over? For
example change the first sente
New submission from Kent Johnson:
In the mimetypes module docs
http://docs.python.org/lib/module-mimetypes.html
the section on add_type() should read "When strict is *true (the
default)* the mapping".
--
components: Documentation
messages: 57636
nosy: kjohnson
severity: mi
New submission from Kent Johnson:
"About this document" http://docs.python.org/lib/about.html still refers
to "the Python Bug Tracker at SourceForge". The bug tracker link is
incorrect (should be the new tracker) and the SF reference is obsolete.
--
components: Do
19 matches
Mail list logo