[issue20735] Documentation: remove stringprep deprecation mark in docs

2014-03-09 Thread Roundup Robot

Roundup Robot added the comment:

New changeset fadde95c134e by Georg Brandl in branch '2.7':
Closes #20735: remove erroneous deprecated marker from stringprep docs
http://hg.python.org/cpython/rev/fadde95c134e

--

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



[issue20854] multiprocessing.managers.Server: problem with returning proxy of registered object

2014-03-09 Thread Allis Tauri

Allis Tauri added the comment:

Thanks for the suggestion. 
method_to_typeid and create_method are documented features, so I don't see why 
not. It does the trick in a cleaner way than my workaround: a metaclass for 
MyClass that just checks the arguments before creating a new instance. It just 
seems to me somewhat counterintuitive.

Another issue that arises in my case is: when I try to pass a proxy of MyClass 
to a subprocess it looses its' _manager during pickling and thus the ability to 
create proxies for children returned by get_child. This is solved by 
reimplementing the (not-working: http://bugs.python.org/issue5862) __reduce__ 
method of BaseManager in MyManager and creating corresponding custom proxy for 
MyClass with __reduce__ method also reimplemented.


So the working solution for the situation is:

either
1.1)
class ReturnProxy(type):
def __call__(cls, *args, **kwargs):
if not kwargs and args and isinstance(args[0], cls):
return args[0]
return super(ReturnProxy, cls).__call__(*args, **kwargs)

class MyClass(object):
__metaclass__ = ReturnProxy
###class body###

or
1.2)
Your solution with the second typeid registration.

2)
class AutoProxyMeta(type):
'''Metaclass that replicates multiprocessing.managers.MakeProxyType
functionality, but allows proxy classes that use it to be pickable'''
def __new__(cls, name, bases, attrs):
dic = {}
for meth in attrs.get('_exposed_', ()):
exec '''def %s(self, *args, **kwds):
return self._callmethod(%r, args, kwds)''' % (meth, meth) in dic
dic.update(attrs)
return super(AutoProxyMeta, cls).__new__(cls, name, bases, dic)

class MyClassProxy(BaseProxy):
__metaclass__ = AutoProxyMeta
_exposed_ = ('get_child',)
_method_to_typeid_ = dict(get_child='MyClass')
#or: _method_to_typeid_ = dict(get_child='_MyClass')

def __reduce__(self):
_unpickle, (cls, token, serializer, kwds) = BaseProxy.__reduce__(self)
kwds['manager'] = self._manager
return _unpickle, (cls, token, serializer, kwds)

class MyClassManager(UManager):
def __reduce__(self):
return (RebuildMyClassManager,
(self._address, None, self._serializer))
WorkCounterManager.register('MyClass', MyClass, MyClassProxy)
#optionally: WorkCounterManager.register('_MyClass', None, MyClassProxy, 
create_method=False)

def RebuildMyClassManager(address, authkey, serializer):
mgr = MyClassManager(address, authkey, serializer)
mgr.connect()
return mgr

--

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



[issue11259] asynchat does not check if terminator is negative integer

2014-03-09 Thread Devin Cook

Changes by Devin Cook devin.c.c...@gmail.com:


Removed file: http://bugs.python.org/file29202/asynchat_tip.patch

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



[issue11259] asynchat does not check if terminator is negative integer

2014-03-09 Thread Devin Cook

Devin Cook added the comment:

updating the patch to the current tip

--
Added file: http://bugs.python.org/file34310/asynchat_tip.patch

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



[issue20145] unittest.assert*Regex functions should verify that expected_regex has a valid type

2014-03-09 Thread Antoine Pitrou

Antoine Pitrou added the comment:

A simple way of checking is to actually re.compile(regex), I think. It should 
automatically raise TypeError on invalid input.

--
nosy: +pitrou

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



[issue20874] Tutorial section on starting python is out of date

2014-03-09 Thread R. David Murray

New submission from R. David Murray:

http://docs.python.org/dev/tutorial/interpreter.html does not talk about the 
fact that completion and history are now enabled by default on systems that 
support readline, and instead says that the command line editing features are 
usually not very sophisticated.  This is no longer true.

--
assignee: docs@python
components: Documentation
messages: 212962
nosy: docs@python, r.david.murray
priority: normal
severity: normal
stage: needs patch
status: open
title: Tutorial section on starting python is out of date
type: enhancement
versions: Python 3.4, Python 3.5

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



[issue20145] unittest.assert*Regex functions should verify that expected_regex has a valid type

2014-03-09 Thread R. David Murray

R. David Murray added the comment:

Heh.  If unittest had used duck typing instead of isinstance for its 
string-to-regex conversion check in the first place, this issue wouldn't even 
have come up.

--
nosy: +r.david.murray

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



[issue17846] Building Python on Windows - Supplementary info

2014-03-09 Thread Kathleen Weaver

Kathleen Weaver added the comment:

Since I am new to Python, I'll take a look at the documentation and see if I 
can help.

--
nosy: +kathweaver

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



[issue20266] Bring Doc/faq/windows up to date

2014-03-09 Thread Kathleen Weaver

Kathleen Weaver added the comment:

Kathleen Weaver -- am beginning to Python but comfortable with Windows so will 
look at this.

--
nosy: +kathweaver

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



[issue19873] There is a duplicate function in Lib/test/test_pathlib.py

2014-03-09 Thread Jessica McKellar

Jessica McKellar added the comment:

Thanks for the patch, NAVNEET.SUMAN!

The patch implements ezio.melotti's proposal and applies cleanly without test 
regressions for me locally.

= patch review

--
nosy: +jesstess
stage: needs patch - patch review

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



[issue20596] Support for alternate wcstok syntax for Windows compilers

2014-03-09 Thread Jeffrey Armstrong

Jeffrey Armstrong added the comment:

I didn't receive any feedback on the last patch from 2014-02-12.  Is this issue 
effectively dead?

--

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



[issue19363] Python 2.7's future_builtins.map is not compatible with Python 3's map

2014-03-09 Thread Jessica McKellar

Jessica McKellar added the comment:

Thanks for the patch, Gareth.Rees!

The patch applies cleanly and the docs build cleanly with it. I visually 
inspected the addition in the built HTML docs and it looks good.

= patch review

--
keywords: +needs review -patch
nosy: +jesstess
stage: needs patch - patch review

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



[issue19363] Python 2.7's future_builtins.map is not compatible with Python 3's map

2014-03-09 Thread Roundup Robot

Roundup Robot added the comment:

New changeset 16c5d7c289c6 by Benjamin Peterson in branch '2.7':
note that future_builtin's map is not quite like python 3's (closes #19363)
http://hg.python.org/cpython/rev/16c5d7c289c6

--
nosy: +python-dev
resolution:  - fixed
stage: patch review - committed/rejected
status: open - closed

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



[issue18775] name attribute for HMAC

2014-03-09 Thread Roundup Robot

Roundup Robot added the comment:

New changeset dde3fb877b07 by R David Murray in branch 'default':
whatsnew: hmac conforms to pep 247. (#18775)
http://hg.python.org/cpython/rev/dde3fb877b07

--

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



[issue14455] plistlib unable to read json and binary plist files

2014-03-09 Thread Roundup Robot

Roundup Robot added the comment:

New changeset 728f626ee337 by R David Murray in branch 'default':
whatsnew: plistlib new api and deprecations (#14455)
http://hg.python.org/cpython/rev/728f626ee337

--

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



[issue18138] ctx.load_verify_locations(cadata)

2014-03-09 Thread Roundup Robot

Roundup Robot added the comment:

New changeset 8e3b3b4a90fb by R David Murray in branch 'default':
whatsnew: SSLcontext.load_verify_locations cadata argument (#18138)
http://hg.python.org/cpython/rev/8e3b3b4a90fb

--
status: pending - open

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



[issue5845] rlcompleter should be enabled automatically

2014-03-09 Thread Roundup Robot

Roundup Robot added the comment:

New changeset 69c451851c71 by R David Murray in branch 'default':
whatsnew: sys.__interactivehook__. (#5845)
http://hg.python.org/cpython/rev/69c451851c71

--

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



[issue17276] HMAC: deprecate default hash

2014-03-09 Thread Roundup Robot

Roundup Robot added the comment:

New changeset c10ec51a2ce4 by R David Murray in branch 'default':
whatsnew: hmac *digestmod* accepts strings, and default is deprecated. (#17276)
http://hg.python.org/cpython/rev/c10ec51a2ce4

--

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



[issue18379] SSLSocket.getpeercert(): OCSP and CRL DP URIs

2014-03-09 Thread Roundup Robot

Roundup Robot added the comment:

New changeset 7885876b6503 by R David Murray in branch 'default':
whatsnew: SSLSocket.getpeercert new values returned. (#18379)
http://hg.python.org/cpython/rev/7885876b6503

--

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



[issue19953] __iadd__() doc not strictly correct

2014-03-09 Thread priya

Changes by priya priyapappachan...@gmail.com:


Added file: http://bugs.python.org/file34311/my.patch

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



[issue20871] Testing: Push email/policy.py line coverage to 100%.

2014-03-09 Thread Roundup Robot

Roundup Robot added the comment:

New changeset 8f7486263212 by R David Murray in branch 'default':
#20871: improve email policy test coverage.
http://hg.python.org/cpython/rev/8f7486263212

--
nosy: +python-dev

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



[issue20871] Testing: Push email/policy.py line coverage to 100%.

2014-03-09 Thread R. David Murray

R. David Murray added the comment:

Thanks, Milan.

--
resolution:  - fixed
stage: patch review - committed/rejected
status: open - closed

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



[issue20875] Typo in gzip._PaddedFile

2014-03-09 Thread Claudiu.Popa

New submission from Claudiu.Popa:

There's a typo in gzip._PaddedFile.prepend. Here's a snippet to reproduce it.

 import gzip
 x=gzip.open(a.gz)
 x.fileobj.prepend()
Traceback (most recent call last):
  File stdin, line 1, in module
  File /tank/libs/cpython/Lib/gzip.py, line 99, in prepend
self._buffer = self._buffer[read:] + prepend
NameError: name 'read' is not defined


--
components: Library (Lib)
messages: 212978
nosy: Claudiu.Popa
priority: normal
severity: normal
status: open
title: Typo in gzip._PaddedFile
type: behavior
versions: Python 3.4

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



[issue20875] Typo in gzip._PaddedFile

2014-03-09 Thread Claudiu.Popa

Claudiu.Popa added the comment:

Patch attached.

--
keywords: +patch
Added file: http://bugs.python.org/file34312/gzip_typo.patch

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



[issue19953] __iadd__() doc not strictly correct

2014-03-09 Thread R. David Murray

R. David Murray added the comment:

I wonder if it would be worth adding a sentence that says, In certain 
situations, augmented assignment can result in unexpected errors (see 
http://docs.python.org/3/faq/programming.html#id44).

--
nosy: +r.david.murray

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



[issue20627] Add context manager support to xmlrpc.client.ServerProxy

2014-03-09 Thread Jessica McKellar

Jessica McKellar added the comment:

Thanks for the patch, Claudiu.Popa! I noticed one tiny thing, which is that it 
introduced some trailing whitespace. I've uploaded a trivial change to your 
patch that removes the whitespace.

* The patch applies cleanly.
* The docs build cleanly with the patch.
* test_xmlrpc passes with the patch.
* I visually inspected the changes in the built HTML docs and they look good. I 
also ran the modified example code from the docs and confirmed that it runs as 
expected.

= needs review

--
keywords: +needs review -easy, patch
nosy: +jesstess
stage: needs patch - patch review
Added file: http://bugs.python.org/file34313/issue20627.patch

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



[issue20876] python -m test test_pathlib fails

2014-03-09 Thread R. David Murray

Changes by R. David Murray rdmur...@bitdance.com:


--
type: crash - behavior
versions: +Python 3.4 -Python 2.7

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



[issue20627] Add context manager support to xmlrpc.client.ServerProxy

2014-03-09 Thread Claudiu.Popa

Claudiu.Popa added the comment:

Cool, thanks, Jessica!

--

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



[issue19953] __iadd__() doc not strictly correct

2014-03-09 Thread priya

Changes by priya priyapappachan...@gmail.com:


Added file: http://bugs.python.org/file34314/my.patch

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



[issue20782] base64 module docs do not use the terms 'bytes' and 'string' consistently.

2014-03-09 Thread Milan Oberkirch

Milan Oberkirch added the comment:

changed 'bytes' and 'byte string' to `bytes-like object` and reviewed usage of 
'byte' and 'string' (the letter made sense to me at some points, e.g. something 
like  ... altchar is a string with two or less letters ...).

--
keywords: +patch
nosy: +zvyn
Added file: http://bugs.python.org/file34315/base64doc.diff

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



[issue4142] smtplib doesn't clear helo/ehlo flags on quit

2014-03-09 Thread Varun Sharma

Varun Sharma added the comment:

I have added a patch and it's test case as per martin's suggestions. Now 
function close() resets the attributes :sock, default_port, ehlo_msg, 
ehlo_resp, helo_resp, source_address

But it does *not* reset : debuglevel, does_esmtp,esmtp_features, file, 
local_hostname

I think the attributes does_esmtp, esmtp_features and local_hostname are most 
probably not going to be changed even if someone uses the same object more than 
once.

--
nosy: +varun
Added file: http://bugs.python.org/file34316/flag_reset_4142.patch

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



[issue18456] Documentation for PyDict_Update is incorrect

2014-03-09 Thread Jill M

Changes by Jill M jillian.mun...@gmail.com:


--
nosy: +Jill.M

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



[issue4849] instantiating and populating xml.dom.minidom.Element is cumbersome

2014-03-09 Thread Jessica McKellar

Jessica McKellar added the comment:

Thanks for the patch, Alexandre.Zani!

--
keywords: +needs review
nosy: +jesstess
versions: +Python 3.5 -Python 3.3

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



[issue4849] instantiating and populating xml.dom.minidom.Element is cumbersome

2014-03-09 Thread Jessica McKellar

Jessica McKellar added the comment:

Sorry, stray submit, one more time:

Thanks for the patch, Alexandre.Zani!

Your patch had some whitespace issues according to `make patchcheck` (see 
http://docs.python.org/devguide/patch.html#generation for details).

I've uploaded a trivial update to your patch that passes patchcheck. The patch 
applies cleanly and test_minidom passes.

This enhancement may need some documentation on the new constructor before 
getting merged, but let's get a design review going.

= patch review

--
stage: needs patch - patch review
Added file: http://bugs.python.org/file34317/issue4849.patch

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



[issue4322] function with modified __name__ uses original name when there's an arg error

2014-03-09 Thread Michele dos Santos da Silva

Michele dos Santos da Silva added the comment:

func_name was not available on the places where the error strings are set 
(PyErr_Format), so I added it and passed it around as needed.

This is the simplest approach, but I am not sure it is the best (newbie here). 
Thus, I am waiting for your comments to improve the solution.

pjenvey noted I cannot just change PyEval_EvalCodeEx, since it is part of the 
interface. I intend to write a new function and call it from the old interface, 
setting func_name to co_name.

Before I do that, I want to check if this design is correct. Also, I am not 
sure what this new function would be called, I am not even sure what the Ex 
means in PyEval_EvalCodeEx.

--
keywords: +patch
nosy: +mchelem
Added file: http://bugs.python.org/file34318/issue4322.patch

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



[issue20875] Typo in gzip._PaddedFile

2014-03-09 Thread Roundup Robot

Roundup Robot added the comment:

New changeset c3836de644e0 by Ned Deily in branch '3.3':
Issue #20875: Prevent possible gzip 'read' is not defined NameError.
http://hg.python.org/cpython/rev/c3836de644e0

New changeset 42599de6a4de by Ned Deily in branch 'default':
Issue #20875: Merge from 3.3
http://hg.python.org/cpython/rev/42599de6a4de

--
nosy: +python-dev

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



[issue20875] Typo in gzip._PaddedFile

2014-03-09 Thread Ned Deily

Ned Deily added the comment:

Thanks for the patch!  Committed for release with 3.3.6 and 3.4.1.

--
nosy: +ned.deily
resolution:  - fixed
stage:  - committed/rejected
status: open - closed
versions: +Python 3.3

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



[issue20876] python -m test test_pathlib fails

2014-03-09 Thread Ned Deily

Ned Deily added the comment:

Looks like the tests were being run on an NFS-based file system. It's not 
surprising that the some of the pathlib tests might fail when using NFS due to 
subtle differences in semantics and timing.  Is it possible for you to run the 
tests again using a local file system working directory, e.g. perhaps under 
/tmp?

--
nosy: +ned.deily, pitrou

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



[issue19953] __iadd__() doc not strictly correct

2014-03-09 Thread priya

Changes by priya priyapappachan...@gmail.com:


Added file: http://bugs.python.org/file34319/my.patch

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



[issue20098] email policy needs a mangle_from setting

2014-03-09 Thread Milan Oberkirch

Milan Oberkirch added the comment:

Added documentation for mangle_from. since the name mangle_from_ is not 
supported by the markup, changed it to mangle_from everywhere, which looks 
better anyway (I understand why it was the other way so). If it was a bad idea, 
I can undo it but am unable to do the doc.

--
Added file: http://bugs.python.org/file34320/mangle_from_with_doc.patch

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



[issue20869] IDLE lib error in IOBinding.py

2014-03-09 Thread Domenico Mustara

Domenico Mustara added the comment:

Is idle-python2.7_2.7.5-8ubuntu3.1_all.deb the latest package? I downloaded it 
from saucy and saucy-updates repository via packages.ubuntu.com. In both cases 
the error is still there. I don't want to be annoying but I would like you to 
decompress the package and verify yourself. Tell me please If I'm wrong. Not a 
great problem, indeed.

--

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



[issue18410] IDLE Improvements: Unit test for SearchDialog.py

2014-03-09 Thread Westley Martínez

Changes by Westley Martínez aniko...@gmail.com:


--
nosy: +westley.martinez

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



[issue20869] IDLE lib error in IOBinding.py

2014-03-09 Thread R. David Murray

R. David Murray added the comment:

That's an Ubuntu packaging issue, not a Python issue.  You should check with 
Ubuntu about it.

--

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



[issue20098] email policy needs a mangle_from setting

2014-03-09 Thread Milan Oberkirch

Milan Oberkirch added the comment:

Rollback to mangle_from_, sorry for the noise.

--
Added file: http://bugs.python.org/file34321/mangle_from_with_doc.patch

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



[issue20098] email policy needs a mangle_from setting

2014-03-09 Thread Milan Oberkirch

Changes by Milan Oberkirch milan...@oberkirch.org:


Removed file: http://bugs.python.org/file34320/mangle_from_with_doc.patch

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



[issue20098] email policy needs a mangle_from setting

2014-03-09 Thread Milan Oberkirch

Changes by Milan Oberkirch milan...@oberkirch.org:


Added file: http://bugs.python.org/file34322/mangle_from_with_doc.patch

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



[issue20098] email policy needs a mangle_from setting

2014-03-09 Thread Milan Oberkirch

Changes by Milan Oberkirch milan...@oberkirch.org:


Removed file: http://bugs.python.org/file34321/mangle_from_with_doc.patch

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



[issue19552] PEP 453: venv module and pyvenv integration

2014-03-09 Thread Roundup Robot

Roundup Robot added the comment:

New changeset a140caad76bc by R David Murray in branch 'default':
whatsnew: venv with_pip, pyvenv --without-pip (#19552)
http://hg.python.org/cpython/rev/a140caad76bc

--

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



[issue8813] SSLContext doesn't support loading a CRL

2014-03-09 Thread Roundup Robot

Roundup Robot added the comment:

New changeset 1508c4c9e747 by R David Murray in branch 'default':
whatsnew: SSLContext.verify_flags and constants. (#8813)
http://hg.python.org/cpython/rev/1508c4c9e747

--
status: pending - open

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



[issue19555] SO config var not getting set

2014-03-09 Thread Roundup Robot

Roundup Robot added the comment:

New changeset ac2ee9fc353a by R David Murray in branch 'default':
whatsnew: deprecation of sysconfig SO key (#19555).
http://hg.python.org/cpython/rev/ac2ee9fc353a

--

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



[issue19953] __iadd__() doc not strictly correct

2014-03-09 Thread Roundup Robot

Roundup Robot added the comment:

New changeset f9cb5a44879c by R David Murray in branch '3.3':
#19953: Clarify the wording of the augmented assignment discussion.
http://hg.python.org/cpython/rev/f9cb5a44879c

New changeset 61ceb299a255 by R David Murray in branch 'default':
Merge #19953: Clarify the wording of the augmented assignment discussion.
http://hg.python.org/cpython/rev/61ceb299a255

--
nosy: +python-dev

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



[issue19953] __iadd__() doc not strictly correct

2014-03-09 Thread R. David Murray

R. David Murray added the comment:

Thanks, Pryia.

--
nosy:  -python-dev
resolution:  - fixed
stage: needs patch - committed/rejected
status: open - closed
type:  - enhancement

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



[issue18624] Add alias for iso-8859-8-i which is the same as iso-8859-8

2014-03-09 Thread M. Volz

Changes by M. Volz marie...@gmail.com:


--
nosy: +mvolz

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



[issue3430] httplib.HTTPResponse documentations inconsistent

2014-03-09 Thread M. Volz

Changes by M. Volz marie...@gmail.com:


--
nosy: +mvolz

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



[issue7159] Urllib2 authentication memory.

2014-03-09 Thread M. Volz

Changes by M. Volz marie...@gmail.com:


--
nosy: +mvolz

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



[issue3849] FUD in documentation for urllib.urlopen()

2014-03-09 Thread M. Volz

Changes by M. Volz marie...@gmail.com:


--
nosy: +mvolz

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



[issue16508] include the object type in the lists of documented types

2014-03-09 Thread M. Volz

Changes by M. Volz marie...@gmail.com:


--
nosy: +mvolz

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



[issue20135] FAQ need list mutation answers

2014-03-09 Thread M. Volz

Changes by M. Volz marie...@gmail.com:


--
nosy: +mvolz

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



[issue20877] test_grammar: assertEquals is deprecated

2014-03-09 Thread Westley Martínez

New submission from Westley Martínez:

Use of assertEquals in test_grammar is deprecated.  I've included a patch  to 
change it to assertEqual.

--
files: test_grammar.deprecation.diff
keywords: patch
messages: 213001
nosy: westley.martinez
priority: normal
severity: normal
status: open
title: test_grammar: assertEquals is deprecated
versions: Python 3.4, Python 3.5
Added file: http://bugs.python.org/file34323/test_grammar.deprecation.diff

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



[issue19292] Make SSLContext.set_default_verify_paths() work on Windows

2014-03-09 Thread Roundup Robot

Roundup Robot added the comment:

New changeset 35a5284d5388 by R David Murray in branch 'default':
whatsnew: SSLContext.load_default_certs (#19292).
http://hg.python.org/cpython/rev/35a5284d5388

--

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



[issue16685] audioop functions shouldn't accept strings

2014-03-09 Thread Roundup Robot

Roundup Robot added the comment:

New changeset c375697f062e by R David Murray in branch 'default':
whatsnew: auidioop.byteswap (#16685).
http://hg.python.org/cpython/rev/c375697f062e

--

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



[issue19668] Add support of the cp1125 encoding

2014-03-09 Thread Roundup Robot

Roundup Robot added the comment:

New changeset 11bc9f669015 by R David Murray in branch 'default':
whatsnew: cp1125 codec (#19668).
http://hg.python.org/cpython/rev/11bc9f669015

--

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



[issue17201] Use allowZip64=True by default

2014-03-09 Thread Roundup Robot

Roundup Robot added the comment:

New changeset 86338438b70d by R David Murray in branch 'default':
whatsnew: allowZip64 defaults to True (#17201).
http://hg.python.org/cpython/rev/86338438b70d

--

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



[issue16596] Skip stack unwinding when next, until and return pdb commands executed in generator context

2014-03-09 Thread Roundup Robot

Roundup Robot added the comment:

New changeset 5c6c96c82afb by R David Murray in branch 'default':
whatsnew: pdb works for debugging asyncio programs (#16596).
http://hg.python.org/cpython/rev/5c6c96c82afb

--

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



[issue13477] tarfile module should have a command line

2014-03-09 Thread Roundup Robot

Roundup Robot added the comment:

New changeset 5b52db6fc7dc by R David Murray in branch 'default':
whatsnew: tarfile cli (#13477).
http://hg.python.org/cpython/rev/5b52db6fc7dc

--

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



[issue15204] Deprecate the 'U' open mode

2014-03-09 Thread Roundup Robot

Roundup Robot added the comment:

New changeset 2d5544afb510 by R David Murray in branch 'default':
whatsnew: 'U' mode deprecation (#15204).
http://hg.python.org/cpython/rev/2d5544afb510

--

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



[issue19722] Expose stack effect calculator to Python

2014-03-09 Thread Roundup Robot

Roundup Robot added the comment:

New changeset 4a801f8b7e2d by R David Murray in branch 'default':
whatsnew: dis.stack_effect (#19722).
http://hg.python.org/cpython/rev/4a801f8b7e2d

--

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



[issue19689] ssl.create_default_context()

2014-03-09 Thread Roundup Robot

Roundup Robot added the comment:

New changeset 8b4b6609cd31 by R David Murray in branch 'default':
whatsnew: ssl.create_default_context (#19689).
http://hg.python.org/cpython/rev/8b4b6609cd31

--
status: pending - open

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



[issue20877] test_grammar: assertEquals is deprecated

2014-03-09 Thread Roundup Robot

Roundup Robot added the comment:

New changeset 2bda1065e931 by Benjamin Peterson in branch 'default':
use assertEqual instead of the deprecated assertEquals (closes #20877)
http://hg.python.org/cpython/rev/2bda1065e931

--
nosy: +python-dev
resolution:  - fixed
stage:  - committed/rejected
status: open - closed

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



[issue20844] coding bug remains in 3.3.5rc2

2014-03-09 Thread Musashi Tamura

Musashi Tamura added the comment:

It seems that this is not fixed in 3.3.5. Someone please reproduce it.

--

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



[issue20265] Bring Doc/using/windows up to date

2014-03-09 Thread Kathleen Weaver

Kathleen Weaver added the comment:

I am very new to Python, but am wanting to work on Documentation.  I read 
through the current document and some of the revisions.

May I rewrite this section so that it is not as intimidating to the average 
Windows user?

I would direct users to use IDLE (Python GUI) or even Python (command line) 
before trying to use the Windows Systems Command Line.  

I can also add information on how to configure Windows 8, so that those items 
are easier to find.  I have just done that to my machine.

--
nosy: +kathweaver

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



[issue20844] coding bug remains in 3.3.5rc2

2014-03-09 Thread Mark Lawrence

Mark Lawrence added the comment:

Works fine for me

--
nosy: +BreamoreBoy

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