[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

___
Python tracker 
<http://bugs.python.org/issue21391>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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/issue21391>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 tracker 
<http://bugs.python.org/issue3599>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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.org/issue7125>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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: Python 2.4, Python 2.5, Python 2.6, Python 2.7, Python 3.0, Python 
3.1, Python 3.2

___
Python tracker 
<http://bugs.python.org/issue7125>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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/issue6984>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 3.1

___
Python tracker 
<http://bugs.python.org/issue6984>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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:
Traceback (most recent call last):
  File "/homes/yinon/bin/idle3", line 5, in 
main()
  File "/homes/yinon/lib/python3.1/idlelib/PyShell.py", line 1420, in main
root.mainloop()
  File "/homes/yinon/lib/python3.1/tkinter/__init__.py", line 1009, in
mainloop
self.tk.mainloop(n)
UnicodeDecodeError: 'utf8' codec can't decode bytes in position 0-1:
illegal encoding

--
components: IDLE
messages: 92667
nosy: Yinon
severity: normal
status: open
title: IDLE 3 crashes on Ctrl+Space with "'utf8' codec can't decode bytes in 
position 0-1"
type: crash
versions: Python 3.1

___
Python tracker 
<http://bugs.python.org/issue6920>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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/datamodel.html";

BTW: it would be even more generous if the page
http://docs.python.org/reference/datamodel.html will include anchors to
specific paragraphs/items, so we could even refer to 
http://docs.python.org/reference/datamodel.html#frame, for example (the
#frame anchor doesn't exist now)

Thanks in advance !

--
assignee: georg.brandl
components: Documentation
messages: 92106
nosy: Yinon, georg.brandl
severity: normal
status: open
title: add link to the documentation of signal.signal

___
Python tracker 
<http://bugs.python.org/issue6810>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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

___
Python tracker 
<http://bugs.python.org/issue6482>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
versions: Python 2.6
Added file: http://bugs.python.org/file14498/subprocess.patch

___
Python tracker 
<http://bugs.python.org/issue6481>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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

___
Python tracker 
<http://bugs.python.org/issue6447>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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-style-and-classic-classes)


* http://docs.python.org/tutorial/classes.html mentions old-style
without any hint to the reader what it's. I suggest to add a link to
http://docs.python.org/reference/datamodel.html#new-style-and-classic-classes.

--
status: pending -> open

___
Python tracker 
<http://bugs.python.org/issue2266>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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

___
Python tracker 
<http://bugs.python.org/issue4828>
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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: normal
status: open
title: Tiny fix for os.walk docstring
versions: Python 2.6

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2707>
__
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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.org/moin/NewClassVsClassicClass

--
assignee: georg.brandl
components: Documentation
messages: 63445
nosy: Yinon, georg.brandl
severity: minor
status: open
title: Missing documentation about old/new-style classes
versions: Python 2.5

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2266>
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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...

--
messages: 62349
nosy: Yinon
severity: normal
status: open
title: unclear error message on bug reporting
versions: Python 2.5

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2099>
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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: open
title: typo in exception-handling tutorial
versions: Python 2.5

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2097>
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 refers to old site
versions: Python 2.5

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue2096>
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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: open
title: PEP 341 is not reflected in the documentation
type: rfe
versions: Python 2.5

__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1760>
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com