[issue19898] No tests for dequereviter_new

2014-06-14 Thread Raymond Hettinger

Raymond Hettinger added the comment:

Thanks guys.

--
resolution:  - fixed
status: open - closed

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue19898
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue21762] update the import machinery to only use __spec__

2014-06-14 Thread Nick Coghlan

Nick Coghlan added the comment:

The spec is authoritative for how was this imported?. The differences between 
that and the module attributes then provide a record of any post-import 
modifications.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue21762
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue21767] singledispatch docs should explicitly mention support for abstract base classes

2014-06-14 Thread Nick Coghlan

New submission from Nick Coghlan:

functools.singledispatch is integrated with the abc module for fast single 
dispatch even in the absence of concrete inheritance. However, this isn't 
obvious from the documentation, so users may not realise they can register a 
single ABC with the generic function, and then multiple classes with the ABC, 
rather than having to register each class with the generic function directly.

--
components: Library (Lib)
messages: 220611
nosy: ncoghlan
priority: normal
severity: normal
stage: needs patch
status: open
title: singledispatch docs should explicitly mention support for abstract base 
classes
type: enhancement
versions: Python 3.4, Python 3.5

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue21767
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue21696] Idle: test configuration files

2014-06-14 Thread Saimadhav Heblikar

Changes by Saimadhav Heblikar saimadhavhebli...@gmail.com:


Added file: http://bugs.python.org/file35641/test-configuration-v2.diff

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue21696
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue21756] IDLE - ParenMatch fails to find closing paren of multi-line statements

2014-06-14 Thread Tal Einat

Tal Einat added the comment:

Terry, I'm not sure what you mean but your last comment.

HyperParser.get_surrounding_brackets() will return a previous opening bracket, 
even if no closing bracket is found for it. CallTips depends on that behavior 
to find the previous opening parenthesis even if it is not closed.

I can surely say that CallTips profits from the existing behavior of 
HyperParser, because it doesn't care whether the parenthesis is closed, and 
this allows HyperParser to do less parsing work.

This patch preserves all of the above and does not affect CallTips at all, 
since for CallTips it leaves end_at_eol at its default value of True. Likewise 
for all other uses of HyperParser, including those in ParenMatch, except 
ParenMatch.flash_paren_event().

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue21756
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



<    1   2