[issue3599] test_pydoc after test_urllib2 causes exception in Popen.__del__

2010-01-20 Thread Yinon Ehrlich
Yinon Ehrlich added the comment: I saw this error in my scripts when using Python 2.5 on Ubuntu. When imported trunk version instead of Python2.5 one, it disappeared. So it's fixed in subprocess - def __del__ -- nosy: +Yinon ___ Python tr

[issue1760] PEP 341 is not reflected in the documentation

2008-01-08 Thread Yinon Ehrlich
New submission from Yinon Ehrlich: Compare: http://docs.python.org/whatsnew/pep-341.html With: http://docs.python.org/ref/exceptions.html http://docs.python.org/tut/node10.html#SECTION001030 -- components: Documentation messages: 59525 nosy: Yinon severity: minor status

[issue2096] Reporting bugs page refers to old site

2008-02-12 Thread Yinon Ehrlich
New submission from Yinon Ehrlich: http://www.python.org/doc/ext/reporting-bugs.html refers to http://sourceforge.net/bugs/?group_id=5470 instead of http://bugs.python.org -- components: Documentation messages: 62347 nosy: Yinon severity: minor status: open title: Reporting bugs page

[issue2097] typo in exception-handling tutorial

2008-02-12 Thread Yinon Ehrlich
New submission from Yinon Ehrlich: At http://docs.python.org/tut/node10.html#SECTION001030 there is "One my also instantiate" instead of "One may also instantiate" -- components: Documentation messages: 62348 nosy: Yinon severity: normal status:

[issue2099] unclear error message on bug reporting

2008-02-12 Thread Yinon Ehrlich
New submission from Yinon Ehrlich: When filing a new bug on http://bugs.python.org/issue and not filling the "Change Note" the following message appears: "Error: list index out of range"... instead of "please fill the change notes" or something alike...

[issue2266] Missing documentation about old/new-style classes

2008-03-10 Thread Yinon Ehrlich
New submission from Yinon Ehrlich <[EMAIL PROTECTED]>: http://docs.python.org/tut/node11.html talks about old/new style classes. But there is no any explanation what it is. The same for http://docs.python.org/ref/node33.html My suggestion: refer to http://wiki.python.or

[issue2266] Missing documentation about old/new-style classes

2008-03-10 Thread Yinon Ehrlich
Changes by Yinon Ehrlich <[EMAIL PROTECTED]>: __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue2266> __ ___ Python-bugs-list mailing list Unsubscribe: http

[issue2707] Tiny fix for os.walk docstring

2008-04-27 Thread Yinon Ehrlich
New submission from Yinon Ehrlich <[EMAIL PROTECTED]>: os.walk.__doc__ has the following example-line (os.py, line 271): for root, dirs, files in walk('python/Lib/email'): it should be os.walk -- components: Library (Lib) messages: 65911 nosy: Yinon severity: nor

[issue4828] patch suggestion for webbrowser

2009-01-04 Thread Yinon Ehrlich
Changes by Yinon Ehrlich : -- components: Library (Lib) files: webbrowser.patch keywords: patch nosy: Yinon severity: normal status: open title: patch suggestion for webbrowser versions: Python 2.6 Added file: http://bugs.python.org/file12580/webbrowser.patch

[issue4828] patch suggestion for webbrowser

2009-01-04 Thread Yinon Ehrlich
New submission from Yinon Ehrlich : this will find applications/batch files ending with .com or .cmd too. ___ Python tracker <http://bugs.python.org/issue4828> ___ ___

[issue21391] PATCH: using the abspath shortcut in Lib/shutil

2014-04-30 Thread Yinon Ehrlich
Changes by Yinon Ehrlich : -- components: Library (Lib) nosy: Yinon priority: normal severity: normal status: open title: PATCH: using the abspath shortcut in Lib/shutil versions: Python 3.5 ___ Python tracker <http://bugs.python.org/issue21

[issue21391] PATCH: using the abspath shortcut in Lib/shutil

2014-05-01 Thread Yinon Ehrlich
Yinon Ehrlich added the comment: Use the 'abspath' shortcut instead of 'os.path.abspath' See the attached patch (sorry, forgot to attach before) -- keywords: +patch Added file: http://bugs.python.org/file35126/shutil.patch ___ P

[issue6447] PATCH: typo (English) in subprocess module

2009-07-09 Thread Yinon Ehrlich
Changes by Yinon Ehrlich : -- components: Library (Lib) files: subprocess.patch keywords: patch nosy: Yinon severity: normal status: open title: PATCH: typo (English) in subprocess module versions: Python 2.7 Added file: http://bugs.python.org/file14477/subprocess.patch

[issue6481] PATCH: typo in subprocess documentation

2009-07-13 Thread Yinon Ehrlich
New submission from Yinon Ehrlich : os.waitpid returns a tuple (pid, status) -- assignee: georg.brandl components: Documentation files: subprocess.patch keywords: patch messages: 90513 nosy: Yinon, georg.brandl severity: normal status: open title: PATCH: typo in subprocess documentation

[issue6482] PATCH: tiny simplification for subprocess

2009-07-13 Thread Yinon Ehrlich
Changes by Yinon Ehrlich : -- files: subprocess.patch keywords: patch nosy: Yinon severity: normal status: open title: PATCH: tiny simplification for subprocess versions: Python 2.7 Added file: http://bugs.python.org/file14499/subprocess.patch

[issue6810] add link to the documentation of signal.signal

2009-08-31 Thread Yinon Ehrlich
New submission from Yinon Ehrlich : in http://docs.python.org/library/signal.html#signal.signal the reader is referred to "see the reference manual section on the standard type hierarchy". It would be generous if we will supply a link like "http://docs.python.org/reference/datamo

[issue6920] IDLE 3 crashes on Ctrl+Space with "'utf8' codec can't decode bytes in position 0-1"

2009-09-16 Thread Yinon Ehrlich
New submission from Yinon Ehrlich : on Ubuntu 8.04 - I downloaded the sources, then: ./configure --prefix=$HOME make && make install in ~/bin/idle3 when I press Ctrl+Space (according to the "Edit" menu, should show completions) idle crashes with the following traceback: Trac

[issue6984] typo in Unicode HOWTO

2009-09-23 Thread Yinon Ehrlich
New submission from Yinon Ehrlich : at http://docs.python.org/dev/3.0/howto/unicode.html: Uniode should be Unicode -- assignee: georg.brandl components: Documentation messages: 93052 nosy: Yinon, georg.brandl severity: normal status: open title: typo in Unicode HOWTO versions: Python

[issue6984] typo in Unicode HOWTO

2009-09-23 Thread Yinon Ehrlich
Yinon Ehrlich added the comment: oops, appear in http://docs.python.org/3.1/howto/unicode.html too... -- ___ Python tracker <http://bugs.python.org/issue6

[issue7125] typo (English) in threading.py

2009-10-14 Thread Yinon Ehrlich
New submission from Yinon Ehrlich : threading.py line 122: "cannot release un-aquired lock" --> "cannot release un-acquired lock" -- components: Library (Lib) messages: 93989 nosy: Yinon severity: normal status: open title: typo (English) in threading.py versions:

[issue7125] typo (English) in threading.py

2009-10-14 Thread Yinon Ehrlich
Yinon Ehrlich added the comment: just saw now that the word 'un-aquired' is repeated several times in the threading module... -- ___ Python tracker <http://bugs.python.

[issue2266] Missing documentation about old/new-style classes

2009-03-30 Thread Yinon Ehrlich
Yinon Ehrlich added the comment: * http://docs.python.org/reference/datamodel.html covers new style and old style quite well. However, for the sake of the reader who reads it top-down, it will be nice to add internal cross references (to http://docs.python.org/reference/datamodel.html#new