[issue18999] Support different contexts in multiprocessing

2014-03-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset b941a320601a by R David Murray in branch 'default': whatsnew: multiprocessing start methods and context (#8713 and #18999) http://hg.python.org/cpython/rev/b941a320601a -- ___ Python tracker

[issue8713] multiprocessing needs option to eschew fork() under Linux

2014-03-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset b941a320601a by R David Murray in branch 'default': whatsnew: multiprocessing start methods and context (#8713 and #18999) http://hg.python.org/cpython/rev/b941a320601a -- ___ Python tracker

[issue18673] Add O_TMPFILE to os module

2014-03-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset 0525f7268067 by R David Murray in branch 'default': whatsnew: os.open O_TMPFILE (#18673). http://hg.python.org/cpython/rev/0525f7268067 -- ___ Python tracker _

[issue16464] urllib.request: opener not resetting content-length

2014-03-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset e6d862886e5c by R David Murray in branch 'default': whatsnew: urllib Request objects are now reusable. http://hg.python.org/cpython/rev/e6d862886e5c -- ___ Python tracker

[issue16333] Trailing whitespace in json dump when using indent

2014-03-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset bb43e8e05a7c by R David Murray in branch 'default': whatsnew: json dump-with-indent whitespace change (#16333). http://hg.python.org/cpython/rev/bb43e8e05a7c -- ___ Python tracker

[issue10042] functools.total_ordering fails to handle NotImplemented correctly

2014-03-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset 1cc413874631 by R David Murray in branch 'default': whatsnew: total_ordering supports NotImplemented (#10042) http://hg.python.org/cpython/rev/1cc413874631 -- ___ Python tracker

[issue17741] event-driven XML parser

2014-03-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset 31e6adf5bfba by R David Murray in branch 'default': whatsnew: deprecation of ElementTree XMLParser *html* and iterparse *parser*. http://hg.python.org/cpython/rev/31e6adf5bfba -- ___ Python tracker

[issue16110] Provide logging.config.configParserConfig

2014-03-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset 113341605247 by R David Murray in branch 'default': whatsnew: logging.fileConfig accepts ConfigParser instances. (#16110) http://hg.python.org/cpython/rev/113341605247 -- ___ Python tracker

[issue1492704] distinct error type if shutil.copyfile() fails because of src and dst are the same file

2014-03-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset 276227a93f6f by R David Murray in branch 'default': whatsnew: shutil copyfile SameFileError (#1492704) http://hg.python.org/cpython/rev/276227a93f6f -- ___ Python tracker

[issue20030] unittest.TestLoader.discover return value incorrectly documented.

2014-03-10 Thread Lita Cho
Lita Cho added the comment: Hello! I have created a patch for the new documentation. I would love it if I could get feedback. Thanks! -- keywords: +patch Added file: http://bugs.python.org/file34345/unittest_doc.patch ___ Python tracker

[issue20886] Disabling logging to ~/.python_history is not simple enough

2014-03-10 Thread Antoine Pitrou
Antoine Pitrou added the comment: What sure not the "panic mode" is about, but in any case you can simply use e.g. "chmod 111 .python_history" (which will forbid both reading and writing the file). -- nosy: +pitrou ___ Python tracker

[issue13477] tarfile module should have a command line

2014-03-10 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- assignee: lars.gustaebel -> resolution: -> fixed stage: commit review -> committed/rejected status: open -> closed ___ Python tracker ___ ___

[issue20030] unittest.TestLoader.discover return value incorrectly documented.

2014-03-10 Thread R. David Murray
R. David Murray added the comment: 'returns' should be 'return', but otherwise it looks good to me. -- ___ Python tracker ___ ___ Pyth

[issue11380] Improve reporting of broken stdout pipe during interpreter shutdown

2014-03-10 Thread mike bayer
mike bayer added the comment: my users are reporting one of these issues, and while I can easily catch IOError on Python 2, I can't catch anything on Python 3, and pointing SIGPIPE to SIG_DFL isn't an option because this is for Alembic migrations and the command needs to complete its work. Wh

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

2014-03-10 Thread Kamilla
Kamilla added the comment: I've implemented a piece of code to check if the expected_regex is a string or regex object. If it's not it raises a TypeError exception. The check is inside the __init__ method of the _AssertRaisesBaseContext class so it will always check the expected_regex in all m

[issue19627] python open built-in function - "updating" is not defined

2014-03-10 Thread Lina Clark
Lina Clark added the comment: I uploaded a patch to reflect reading and writing in the python 2.7 documentation for 'updating'. -- keywords: +patch nosy: +linaclark Added file: http://bugs.python.org/file34347/function_doc.patch ___ Python tracker <

[issue20030] unittest.TestLoader.discover return value incorrectly documented.

2014-03-10 Thread Lita Cho
Lita Cho added the comment: Good catch! I fixed that and loaded it in the attached patch! -- Added file: http://bugs.python.org/file34348/unittest_doc.patch ___ Python tracker __

[issue20888] tracemalloc: add getline() method to Traceback and Frame

2014-03-10 Thread STINNER Victor
New submission from STINNER Victor: Is it too late in Python 3.4 release process to add a new method to classes of the tracemalloc module? Here is a patch which adds unit tests and uses the new method in the documentation. Example before: Top 10 lines #1: collections/__init__.py:368:

[issue20886] Disabling logging to ~/.python_history is not simple enough

2014-03-10 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: Antoine Pitrou: > What sure not the "panic mode" is about, but in any case you can simply > use e.g. "chmod 111 .python_history" (which will forbid both reading and > writing the file). It surely does not work: $ rm -f .python_history $ to

[issue20888] tracemalloc: add getline() method to Traceback and Frame

2014-03-10 Thread R. David Murray
R. David Murray added the comment: Yes it is too late. The only reason any code changes should be made to the final RC is if we would otherwise have a brown bag release. -- nosy: +r.david.murray ___ Python tracker

[issue18456] Documentation for PyDict_Update is incorrect

2014-03-10 Thread Raymond Hettinger
Raymond Hettinger added the comment: Nice catch. -- nosy: +rhettinger ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[issue20889] asyncio.docs : asyncio.Condition acquire/release/locked method undocumented

2014-03-10 Thread Alexandre JABORSKA
New submission from Alexandre JABORSKA: While the asyncio.Condition.acquire(), release() an locked() methods work as expected (on the underlying Lock), they are not mentioned in the documentation. -- assignee: docs@python components: Documentation messages: 213117 nosy: ajaborsk, docs@p

[issue19407] PEP 453: update the "Installing Python Modules" documentation

2014-03-10 Thread Marcus Smith
Marcus Smith added the comment: about the hhgtp link, logged here: https://github.com/python/pythondotorg/issues/268 (and already fixed) also, pyvenv is more prominent now in PUG as of latest changes (see https://github.com/pypa/python-packaging-user-guide/pull/35) -- __

[issue20887] stdlib compatibility with pypy, test_zipfile.py

2014-03-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: In general LGTM. Do you interesting in porting this to Python 3 (this would be non-trivial work)? -- assignee: -> serhiy.storchaka nosy: +serhiy.storchaka stage: -> needs patch versions: +Python 3.3, Python 3.4 _

<    1   2