[issue33708] Doc: Asyncio's Event documentation typo.

2018-05-31 Thread Timo Furrer


Timo Furrer  added the comment:

It seems like it's pointing to the correct location, it's just that depending 
on the size of your screen the "wait" section is too far to the bottom and 
therefore it can't quite scroll to the heading of the wait heading so that it's 
on top of your screen ;)

--
nosy: +tuxtimo

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



[issue33708] Doc: Asyncio's Event documentation typo.

2018-05-31 Thread Timo Furrer


Timo Furrer  added the comment:

Yes, sorry, my bad.

--

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



[issue33708] Doc: Asyncio's Event documentation typo.

2018-05-31 Thread Timo Furrer


Timo Furrer  added the comment:

The link to the set method is also wrong. It points to 
https://docs.python.org/3/library/stdtypes.html#set instead of 
https://docs.python.org/3/library/asyncio-sync.html#asyncio.Event.set

--

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



[issue33708] Doc: Asyncio's Event documentation typo.

2018-05-31 Thread Timo Furrer


Timo Furrer  added the comment:

I'm working on a patch :)

--

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



[issue33708] Doc: Asyncio's Event documentation typo.

2018-05-31 Thread Timo Furrer


Change by Timo Furrer :


--
keywords: +patch
pull_requests: +6905
stage:  -> patch review

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



[issue33600] [EASY DOC] Python 2: document that platform.linux_distribution() has been removed

2018-05-31 Thread Timo Furrer


Change by Timo Furrer :


--
keywords: +patch
pull_requests: +6906
stage:  -> patch review

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



[issue33687] uu.py calls os.path.chmod which doesn't exist

2018-05-31 Thread Timo Furrer


Change by Timo Furrer :


--
keywords: +patch
pull_requests: +6908
stage: needs patch -> patch review

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



[issue33687] uu.py calls os.path.chmod which doesn't exist

2018-05-31 Thread Timo Furrer


Timo Furrer  added the comment:

I've added a test and updated the PR.

--
nosy: +tuxtimo

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



[issue33606] Improve logging performance when logger disabled

2018-05-31 Thread Timo Furrer


Change by Timo Furrer :


--
keywords: +patch
pull_requests: +6911
stage: needs patch -> patch review

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



[issue28657] cmd.Cmd.get_help() implementation can't see do_*() methods added dynamically by setattr()

2018-05-31 Thread Timo Furrer


Change by Timo Furrer :


--
nosy: +tuxtimo

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



[issue33668] Wrong behavior of help function on module

2018-05-31 Thread Timo Furrer


Change by Timo Furrer :


--
nosy: +tuxtimo

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



[issue30618] readlink for pathlib paths

2018-05-31 Thread Timo Furrer


Change by Timo Furrer :


--
nosy: +tuxtimo

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



[issue33739] pathlib: Allow ellipsis to appear after "/" to navigate to parent path

2018-06-02 Thread Timo Furrer


Timo Furrer  added the comment:

> I've just tried, "..." doesn't seem to mean anything on the Windows CLI.

It's not only about Windows / Linux here - it's about the shell and command 
which is being used. If we talk about "cd" for example - it's a builtin in most 
common shells on Linux, which behave differently:

bash:

/a/b/c $ cd ...
bash: cd: ...: No such file or directory

dash:

/a/b/c $ cd ...
dash: 8: cd: can't cd to ...

zsh:

/a/b/c $ cd ...
/a $

I think using '...' to navigate to the parent is confusing. 
It's well known and agreed that '..' is for navigating to the parent. 
'...' looks similar but is definitely not the same as '..' and therefore 
shouldn't be treated as such.

--
nosy: +tuxtimo

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



[issue33660] pathlib.Path.resolve() returns path with double slash when resolving a relative path in root directory

2018-06-02 Thread Timo Furrer


Change by Timo Furrer :


--
nosy: +tuxtimo

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



[issue30974] Update os.samefile docstring to match documentation

2018-06-02 Thread Timo Furrer


Change by Timo Furrer :


--
keywords: +patch
pull_requests: +6968
stage: needs patch -> patch review

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



[issue17446] doctest test finder doesnt find line numbers of properties

2016-01-31 Thread Timo Furrer

Timo Furrer added the comment:

I took the ideas from @Michael.Cuthbert and wrote a proper test. It's my first 
patch so I hope everything's fine with it. If not I'm happy for feedback :)

--
keywords: +patch
nosy: +Timo Furrer
Added file: http://bugs.python.org/file41769/fix_issue_17446.patch

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



[issue26264] keyword.py missing async await

2016-02-01 Thread Timo Furrer

New submission from Timo Furrer:

I had a look at the *Lib/keyword.py* module. It seems like the auto generated 
*kwlist* is missing the *await* and *async* keywords.
At least according to https://www.python.org/dev/peps/pep-0492/ they are called 
*keywords*. 

The keyword module generates the *kwlist* from *Python/graminit.c*.

--
components: Library (Lib)
messages: 259349
nosy: tuxtimo
priority: normal
severity: normal
status: open
title: keyword.py missing async await
versions: Python 3.5, Python 3.6

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



[issue26264] keyword module missing async and await keywords

2016-02-01 Thread Timo Furrer

Changes by Timo Furrer :


--
title: keyword.py missing async await -> keyword module missing async and await 
keywords

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



[issue26267] UUID docs should say how to get "standard form"

2016-02-02 Thread Timo Furrer

Changes by Timo Furrer :


--
nosy: +tuxtimo

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



[issue17446] doctest test finder doesnt find line numbers of properties

2016-02-04 Thread Timo Furrer

Timo Furrer added the comment:

Yes, I've tested it.

--

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