[issue24942] Remove domain from ipaddress.reverse_pointer property and add method

2015-08-26 Thread Lee Clemens

New submission from Lee Clemens:

To lookup info from Cymru (https://www.team-cymru.org/IP-ASN-mapping.html#dns) 
the domain needs to be changed. Although I have not personally seen any, there 
may also be cases where dropping the domain altogether would be helpful.

So I am wondering if the @property should return the 'bare' reversed address 
and a new function be added to append the version-appropriate domain as the 
default or an optional arg as a convenience?

Ref: https://bugs.python.org/issue20480

--
components: Library (Lib)
messages: 249217
nosy: leeclemens
priority: normal
severity: normal
status: open
title: Remove domain from ipaddress.reverse_pointer property and add method
versions: Python 3.5

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



[issue24942] Remove domain from ipaddress.reverse_pointer property and add method

2015-08-26 Thread Lee Clemens

Changes by Lee Clemens j...@leeclemens.net:


--
type:  - enhancement

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



[issue21367] multiprocessing.JoinableQueue requires new kwarg

2014-04-27 Thread Lee Clemens

New submission from Lee Clemens:

Not mentioned (at least not specifically) in the release notes, 
multiprocessing.JoinableQueue now requires 'ctx' keyword argument:
  def __init__(self, maxsize=0, *, ctx):

This causes an application calling JoinableQueue() to work with 3.3.2 (my 
single test) to work, but not with 3.4.0

TypeError: __init__() missing 1 required keyword-only argument: 'ctx'

The documentation is also incorrect: 
https://docs.python.org/3.4/library/multiprocessing.html#multiprocessing.JoinableQueue

--
components: Interpreter Core
messages: 217289
nosy: s...@leeclemens.net
priority: normal
severity: normal
status: open
title: multiprocessing.JoinableQueue requires new kwarg
type: compile error
versions: Python 3.4

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



[issue21367] multiprocessing.JoinableQueue requires new kwarg

2014-04-27 Thread Lee Clemens

Lee Clemens added the comment:

Same issue (ctx keyword) occurs with multiprocessing.queues.SimpleQueue

--

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