[issue11271] concurrent.futures.ProcessPoolExecutor.map() doesn't batch function arguments by chunks

2014-07-23 Thread Dan O'Reilly
Dan O'Reilly added the comment: Here's a patch that adds the new map implementation from the benchmark script to concurrent.futures.process. -- keywords: +patch Added file: http://bugs.python.org/file36059/map_chunksize.patch ___ Python tracker

[issue22041] http POST request with python 3.3 through web proxy

2014-07-23 Thread Demian Brecht
Demian Brecht added the comment: Hi Alejandro, I've spent a little time looking into this. I haven't been able to reproduce what you're seeing on Windows exactly, but I've encountered other issues along the same path using a local squid instance (localhost:4242): from http.client import OK,

[issue22021] shutil.make_archive() root_dir do not work

2014-07-23 Thread Weinan Li
Weinan Li added the comment: that sounds reasonable -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue22036] Obsolete reference to stringobject in comment

2014-07-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset a5a80f79699e by Benjamin Peterson in branch '3.4': s/stringobject/bytesobject/ (closes #22036) http://hg.python.org/cpython/rev/a5a80f79699e New changeset 6be54158e935 by Benjamin Peterson in branch 'default': merge 3.4 (#22036) http://hg.python.org

[issue22041] http POST request with python 3.3 through web proxy

2014-07-23 Thread Demian Brecht
Demian Brecht added the comment: Ignore my previous note. Digging into this a little more, I think I've possibly found the underlying issue: If the port is not specified in set_tunnel (as in your example), the buffer sent over the wire looks like "send: b'POST [PATH] HTTP/1.1\r\nHost: [HOST]:

[issue21990] saxutils defines an inner class where a normal one would do

2014-07-23 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: LGTM. But it would be better to add underscore prefix to class name. -- nosy: +serhiy.storchaka stage: -> commit review ___ Python tracker __

[issue13041] argparse: terminal width is not detected properly

2014-07-23 Thread paul j3
paul j3 added the comment: For now the user could add this to his module: import os, shutil os.environ['COLUMNS'] = str(shutil.get_terminal_size().columns) -- ___ Python tracker ___

[issue2091] file accepts 'rU+' as a mode

2014-07-23 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: In Python 3.4+ 'U' already emits deprecation warning. -- nosy: +serhiy.storchaka ___ Python tracker ___ ___

[issue22055] Incomplete sentence in asyncio BaseEventLoop doc

2014-07-23 Thread Saimadhav Heblikar
Changes by Saimadhav Heblikar : -- assignee: docs@python components: Documentation, asyncio files: asyncio-eventloop-doc-incomplete-sent.diff keywords: patch nosy: docs@python, gvanrossum, haypo, sahutd, yselivanov priority: normal severity: normal status: open title: Incomplete sentence

<    1   2