[issue20351] Add doc examples for DictReader and DictWriter

2014-03-04 Thread Charles-Axel Dein
Charles-Axel Dein added the comment: Any update? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue20849] add exist_ok to shutil.copytree

2014-03-04 Thread Alexander Mohr
Alexander Mohr added the comment: awesome, thanks so much!! -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue20155] Regression test test_httpservers fails, hangs on Windows

2014-03-04 Thread R. David Murray
R. David Murray added the comment: Ah, OK. I was thinking that BaseHTTPRequestHandler defined GET, but I see that it doesn't. So yes, this patch looks fine to me. -- ___ Python tracker __

[issue19021] AttributeError in Popen.__del__

2014-03-04 Thread Barry A. Warsaw
Changes by Barry A. Warsaw : -- priority: normal -> release blocker ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue20155] Regression test test_httpservers fails, hangs on Windows

2014-03-04 Thread Jeff Allen
Jeff Allen added the comment: I worked out that the essence of the test is to insert an extra \n at the end of a GET request line. The request is syntactically invalid for HTTP. The \n\r\n appears like two blank lines, implying no headers, but the headers then follow where no data should be. T

[issue20283] Wrong keyword parameter name in regex pattern methods

2014-03-04 Thread Martin v . Löwis
Martin v. Löwis added the comment: Serhiy: the patch is incomplete; it lacks test cases. -- ___ Python tracker ___ ___ Python-bugs-lis

[issue20283] Wrong keyword parameter name in regex pattern methods

2014-03-04 Thread Martin v . Löwis
Martin v. Löwis added the comment: Since there is no consensus on how to resolve this issue, I'm dropping the release-critical status for it; people should now consider whether a future agreed-upon solution could apply to 3.4.1 or just to 3.5. -- priority: release blocker -> normal __

[issue14302] Rename Scripts directory to bin and move python.exe to bin

2014-03-04 Thread Martin Dengler
Martin Dengler added the comment: Ok, you're right about my link #2; I meant to include this link (a reply to the link I actually included): https://mail.python.org/pipermail/python-dev/2012-March/118047.html ...in which I think the pertinent quote is: "For direct execution, the proposal trad

[issue20852] Embedding with zipped standard library is broken in 3.3.4 (Windows)

2014-03-04 Thread Ned Deily
Ned Deily added the comment: Great, thanks! -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[issue20852] Embedding with zipped standard library is broken in 3.3.4 (Windows)

2014-03-04 Thread Andrey Antsut
Andrey Antsut added the comment: Just checked - confirming that it works with 3.3.5rc2. -- status: pending -> open ___ Python tracker ___

[issue19612] test_subprocess: sporadic failure of test_communicate_epipe() on Windows 8

2014-03-04 Thread STINNER Victor
STINNER Victor added the comment: Oh, it looks like my patch is not enough: the test still fails sometimes :-/ It looks like the process was still running (poll() didn't return None) whereas stdin.write() got an OSError(errno.EINVAL). http://buildbot.python.org/all/builders/x86%20Windows%20Ser

[issue20852] Embedding with zipped standard library is broken in 3.3.4 (Windows)

2014-03-04 Thread Ned Deily
Ned Deily added the comment: This is most likely a duplicate of Issue20621. A fix for the problem is the primary motivation for a new maintenance release for which a release candidate is now available. It would be great if you could test with 3.3.5rc2 and confirm that the problem no longer o

[issue20822] WINhelp file loads Table of Contents, but not contents: "Navigation to webpage cancelled"

2014-03-04 Thread Nemo Neminibus
Nemo Neminibus added the comment: Thanks for the reply. No network drive involved. Using Windows Vista on solo computer. But the referenced problem for a network drive is EXACTLY the problem I had. The same solution worked. Problem fixed. -- resolution: -> works for me status: open

[issue11240] Running unit tests in a command line tool leads to infinite loop with multiprocessing on Windows

2014-03-04 Thread Martin Dengler
Martin Dengler added the comment: > the root issue turned out to be that when you execute any multiprocessing > statements at the module/script level on Windows, you need to put it under if > __name__ == "__main__", otherwise it will cause infinite spawning. Same for me. The error message and

[issue20852] Embedding with zipped standard library is broken in 3.3.4 (Windows)

2014-03-04 Thread Andrey Antsut
New submission from Andrey Antsut: When embedding Python into C++, Py_Initialize() crashes with following errors if the standard library (python33\lib) is in a zip archive (e.g. python33.zip): Fatal Python error: Py_Initialize: unable to load the file system codec ImportError: No module named '

[issue13936] datetime.time(0, 0, 0) evaluates to False despite being a valid time

2014-03-04 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: > Please reopen. Please bring your case to python-ideas. All developers who commented on this issue agree that it is invalid. -- ___ Python tracker ___

[issue11240] Running unit tests in a command line tool leads to infinite loop with multiprocessing on Windows

2014-03-04 Thread Matt Chaput
Matt Chaput added the comment: IIRC the root issue turned out to be that when you execute any multiprocessing statements at the module/script level on Windows, you need to put it under if __name__ == "__main__", otherwise it will cause infinite spawning. I think this is mentioned in the multip

[issue20846] pip can fail on windows but gives success message

2014-03-04 Thread Mark Lawrence
Mark Lawrence added the comment: All, and especially Ned, thank you for the detailed explanations, I do appreciate it. -- ___ Python tracker ___

[issue20846] pip can fail on windows but gives success message

2014-03-04 Thread R. David Murray
R. David Murray added the comment: Oh, right. I forgot to look back at the original report. It does show that pyttsx was installed, since the error is coming from its __init__. -- ___ Python tracker

[issue15014] smtplib: add support for arbitrary auth methods

2014-03-04 Thread R. David Murray
R. David Murray added the comment: OK, that makes sense to me. I'll take a look at it as soon as I can. -- ___ Python tracker ___ ___

[issue13936] datetime.time(0, 0, 0) evaluates to False despite being a valid time

2014-03-04 Thread Andreas Pelme
Andreas Pelme added the comment: I agree with Danilo and Shai -- this behavior very surprising. I deal with datetimes a lot, and this bug has bitten me a number of times. I cannot really think of a single case where "if timeobj:" is useful with the current behavior. It results in a check for "

[issue20770] Inform caller of smtplib STARTTLS failures

2014-03-04 Thread Varun Sharma
Varun Sharma added the comment: I think that raising an exception for starttls failure can be avoided, so i have added a patch for documentation which adds the following line to doc string : "If server supports TLS but fails to start it, then it does not raise any exception". -- keywo

[issue20846] pip can fail on windows but gives success message

2014-03-04 Thread Ned Deily
Ned Deily added the comment: Alas, I don't think there is a bug in the import machinery, either. Note that puttsx's __init__.py uses a pre-PEP 328 ambiguous relative import: from engine import ... Even if there were no syntax errors, in Python 3 that would have to be spelled: from .engine im

[issue15014] smtplib: add support for arbitrary auth methods

2014-03-04 Thread Milan Oberkirch
Milan Oberkirch added the comment: Maybe I am a bit hyperactive, but I already was at it when receiving your message, so I finished it. Anyhow most of what I have done is completely independent of the API chosen. What I did: 1. I implemented a new authenticate(self, mechanism, authobject) as in

[issue20035] Suppress 'os.environ was modified' warning on Tcl/Tk tests

2014-03-04 Thread Zachary Ware
Zachary Ware added the comment: Here's a patch that seems to work; with it applied, I can run `PCbuild\python_d.exe -m test -uall -rF test_tcl test_tk test_ttk_textonly test_ttk_guionly test_idle` through at least 115 rounds of testing with no warnings or errors aside from a locale warning fro

[issue11588] Add "necessarily inclusive" groups to argparse

2014-03-04 Thread paul j3
paul j3 added the comment: A couple more thoughts on an expanded argument testing mechanism: - do we need both 'seen_actions' and 'seen_non_default_actions'? 'seen_actions' is used only to test whether all required actions have been seen. These 2 sets differ in how positionals with '?*' are

[issue11240] Running unit tests in a command line tool leads to infinite loop with multiprocessing on Windows

2014-03-04 Thread Martin Dengler
Changes by Martin Dengler : -- nosy: +mdengler ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyt

[issue13936] datetime.time(0, 0, 0) evaluates to False despite being a valid time

2014-03-04 Thread Shai Berger
Shai Berger added the comment: Just got bit by this. Tim Peters said: """ It is odd, but really no odder than "zero values" of other types evaluating to false in Boolean contexts. """ I disagree. Midnight is not a "zero value", it is just a value. It does not have any special qualities analog

[issue18139] email module should have a way to prepend and insert headers

2014-03-04 Thread Surya K
Surya K added the comment: Without really making big the in the API, one way of providing a position sensitive methods to enable more organized headers is to have. Having an index based api probably needs `more` discussion and thought! 1. add_header_before('existing-header-name', 'new-name', v

[issue20831] 3.4 cherry-pick: 7b3c40510a08 Windows uninstaller doesn't uninstall completly Python 3.4

2014-03-04 Thread Martin v . Löwis
Martin v. Löwis added the comment: This is all correct. In rc1, uninstallation was clean (but installation failed when elevated privileges were necessary); in rc2, it always installs, but doesn't cleanly uninstall, leaving the installation directory with some subdirectories behind. --

[issue20832] 3.4 cherry-pick: 9459f517d854 Update Windows installer to SQLite from 3.8.1 to 3.8.3.1.

2014-03-04 Thread STINNER Victor
Changes by STINNER Victor : -- title: 3.4 cherry-pick: 9459f517d854 Update Windows installer to SQLite 3.8.3.1. -> 3.4 cherry-pick: 9459f517d854 Update Windows installer to SQLite from 3.8.1 to 3.8.3.1. ___ Python tracker

[issue20834] 3.4 cherry-pick: de81e0fe4905 Pydocs module docs server not working on Windows.

2014-03-04 Thread Martin v . Löwis
Martin v. Löwis added the comment: I agree that the issue is not release-critical. -- ___ Python tracker ___ ___ Python-bugs-list mail

[issue20832] 3.4 cherry-pick: 9459f517d854 Update Windows installer to SQLite 3.8.3.1.

2014-03-04 Thread Martin v . Löwis
Martin v. Löwis added the comment: Victor: I'm not sure whether the bugfix release is necessary. However, if this change is not applied, SQLite would remain at 3.8.1 on Windows (which, in itself, would be fine with me, but updating it was requested in #20465). -- _

[issue20841] asyncio.StreamReader.readline() lack lines limit optional parameter

2014-03-04 Thread Guido van Rossum
Guido van Rossum added the comment: Yes, your whole world will be turned upside-down. However, we have to do it one module at a time -- the approach will be different for each case. -- resolution: -> wont fix status: open -> closed ___ Python tracke

[issue15014] smtplib: add support for arbitrary auth methods

2014-03-04 Thread R. David Murray
R. David Murray added the comment: Ah, I was going on imperfect memory of how imaplib worked without looking it up. And I won't have time to do so today probably. Probably we should decide on the exact API before you implement anything. -- ___ Pyth

[issue20846] pip can fail on windows but gives success message

2014-03-04 Thread R. David Murray
R. David Murray added the comment: Ah, I see. I'm still not convinced from a usability standpoint that calling it a successful install when byte compilation failed is good, but I understand your point. And yeah, the ImportError problem getting resolved would make it a lot clearer what was ac

[issue18886] BytesGenerator does not handle 'binary' CTE correctly

2014-03-04 Thread R. David Murray
R. David Murray added the comment: cte binary has nothing to do with headers (other than appearing as the value of the content-transfer-encoding header). It is about how the body of the email is handled. ByteGenerator needs to be modified to not do anything with a payload whose cte is binary

[issue19861] Update What's New for Python 3.4

2014-03-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: David did and does a great job (many thanks to him), but surprisingly many of changes from msg205005 are still not mentioned in What's New. Improvements and changes in modules: aifc: Any bytes-like objects are now accepted. audioop: Any bytes-like objects

[issue20851] Update devguide to cover testing from a tarball

2014-03-04 Thread Brett Cannon
New submission from Brett Cannon: Nick Coghlan brought up the fact that with Larry Hastings doing periodic tarball dumps for the 3.4.0 release it would be good to make sure instructions on how to actually test from a tarball were in the devguide. -- components: Devguide messages: 21272

[issue20015] Allow 1-character ASCII unicode where 1-character str is required

2014-03-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Here is a patch with tests. Not all affected methods are tested because not all methods and modules have tests at all. -- Added file: http://bugs.python.org/file34284/getargs_c_unicode_2.patch ___ Python tracker <

[issue20849] add exist_ok to shutil.copytree

2014-03-04 Thread Berker Peksag
Changes by Berker Peksag : -- stage: -> patch review versions: -Python 3.3, Python 3.4 ___ Python tracker ___ ___ Python-bugs-list m

[issue15014] smtplib: add support for arbitrary auth methods

2014-03-04 Thread Milan Oberkirch
Milan Oberkirch added the comment: I looked into imaplib a bit to see how the problem is solved there; what I observed: - login() does 'PLAIN' only (and does not use authobj but smtplib would) - there exists an extra function login_cram_md5() for 'CRAM-MD5' So I guess the right way to do it wou

[issue20767] Some python extensions can't be compiled with clang 3.4

2014-03-04 Thread Arfrever Frehtes Taifersar Arahesis
Arfrever Frehtes Taifersar Arahesis added the comment: https://bugs.gentoo.org/show_bug.cgi?id=503352 suggests that this problem occurs also on Linux when using Clang. -- ___ Python tracker ___

[issue20767] Some python extensions can't be compiled with clang 3.4

2014-03-04 Thread koobs
koobs added the comment: It would be great if this could make it into 3.4, extended to include other OS's if necessary at a later date. -- ___ Python tracker ___ ___

[issue19837] Wire protocol encoding for the JSON module

2014-03-04 Thread Josh Lee
Changes by Josh Lee : -- nosy: +jleedev ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org

[issue17909] Autodetecting JSON encoding

2014-03-04 Thread Josh Lee
Changes by Josh Lee : -- nosy: +jleedev ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org

[issue18886] BytesGenerator does not handle 'binary' CTE correctly

2014-03-04 Thread Surya K
Surya K added the comment: Forget about my previous comment. David Murray: One possible way to fix this issue is to ignore email.header.Header.encode() on Message values in email._policybase_Compat32._fold() if they come from BytesGenerator and not Generator. We can do this by encoding the val

[issue20808] 3.4 cherry pick: 6a1711c96fa6 (Popen.__del__ traceback)

2014-03-04 Thread STINNER Victor
STINNER Victor added the comment: This issue is a regression of Python 3.4 compared to Python 3.3. subprocess is major module and so 6a1711c96fa6 must be into Python 3.4.0. -- ___ Python tracker __

[issue20848] 3.4 cherry-pick: b637064cc696 Improve enum subclass behavior

2014-03-04 Thread STINNER Victor
STINNER Victor added the comment: Changeset b637064cc696 comes from issue #20653. This changeset and this cherry-pick issue were discussed here: https://mail.python.org/pipermail/python-dev/2014-February/132560.html Antoine and Barry agree to cherry-pick b637064cc696 in Python 3.4.0. -

[issue20843] 3.4 cherry-pick: a9058b772807 fix tracemalloc doc

2014-03-04 Thread STINNER Victor
STINNER Victor added the comment: Note: tracemalloc is a new module of Python 3.4. -- ___ Python tracker ___ ___ Python-bugs-list mail

[issue20829] 3.4 cherry pick: c9861ec8754c Fix signatures for dict.__delitem__ and property.__delete__

2014-03-04 Thread STINNER Victor
STINNER Victor added the comment: It is a regression of Python 3.4 compared to 3.3. The change only modifies docstrings and so looks safe. IMO it should go into Python 3.4.0. -- nosy: +haypo ___ Python tracker ___

[issue20283] Wrong keyword parameter name in regex pattern methods

2014-03-04 Thread STINNER Victor
STINNER Victor added the comment: We are close to Python 3.4 final, so what is the status of this issue? I don't see any commit and nothing to cherry-pick in Larry's 3.4.0 repository. -- nosy: +haypo ___ Python tracker

[issue20834] 3.4 cherry-pick: de81e0fe4905 Pydocs module docs server not working on Windows.

2014-03-04 Thread STINNER Victor
STINNER Victor added the comment: If I understood correctly, it doesn't look like a regression of Python 3.4. So it may wait for Python 3.4.1. -- nosy: +haypo title: 3.4 cherry-pick: de81e0fe4905 -> 3.4 cherry-pick: de81e0fe4905 Pydocs module docs server not working on Windows. __

[issue20832] 3.4 cherry-pick: 9459f517d854 Update Windows installer to SQLite 3.8.3.1.

2014-03-04 Thread STINNER Victor
Changes by STINNER Victor : -- title: 3.4 cherry-pick: 9459f517d854 -> 3.4 cherry-pick: 9459f517d854 Update Windows installer to SQLite 3.8.3.1. ___ Python tracker ___ _

[issue20832] 3.4 cherry-pick: 9459f517d854

2014-03-04 Thread STINNER Victor
STINNER Victor added the comment: Does the single change of 3.8.3.1 impacts Python on Windows? http://www.sqlite.org/releaselog/3_8_3_1.html "Fix a bug (ticket 4c86b126f2) that causes rows to go missing on some queries with OR clauses and IS NOT NULL operators in the WHERE clause, when the SQL

[issue20850] 3.4 cherry pick: ea827c809765 fix pkgutil.find_loader

2014-03-04 Thread Nick Coghlan
New submission from Nick Coghlan: Cherry pick request for the fix to issue 20839: http://hg.python.org/cpython/rev/ea827c809765 This updates pkgutil.find_loader to use importlib.util.find_spec, rather than the deprecated importlib.find_loader. -- keywords: 3.4regression messages: 2127

[issue20831] 3.4 cherry-pick: 7b3c40510a08 Windows uninstaller doesn't uninstall completly Python 3.4

2014-03-04 Thread STINNER Victor
Changes by STINNER Victor : -- title: 3.4 cherry-pick: 7b3c40510a08 -> 3.4 cherry-pick: 7b3c40510a08 Windows uninstaller doesn't uninstall completly Python 3.4 ___ Python tracker __

[issue20839] pkgutil.get_loader throws deprecation warning due to internal deprecation

2014-03-04 Thread Roundup Robot
Roundup Robot added the comment: New changeset ea827c809765 by Nick Coghlan in branch 'default': Close #20839: pkgutil.find_loader now uses importlib.util.find_spec http://hg.python.org/cpython/rev/ea827c809765 -- nosy: +python-dev resolution: -> fixed stage: -> committed/rejected stat

[issue20831] 3.4 cherry-pick: 7b3c40510a08

2014-03-04 Thread STINNER Victor
STINNER Victor added the comment: I don't understand the impact of #20748: what happens when 3.4rc2 is uninstalled? C:\Python34 is not removed because C:\Python34Lib\ensurepip\__pycache__\_uninstall.cpython-34.pyc still exist? It is a regression of Python 3.4rc2, right? -- nosy: +hayp

[issue20807] 3.4 cherry pick: 82ec02db7fe6 & ec42ab5e0cb3 Windows installer fixes, pip uninstall failure

2014-03-04 Thread STINNER Victor
Changes by STINNER Victor : -- title: 3.4 cherry pick: 82ec02db7fe6 & ec42ab5e0cb3 Windows installer fixes -> 3.4 cherry pick: 82ec02db7fe6 & ec42ab5e0cb3 Windows installer fixes, pip uninstall failure ___ Python tracker

[issue20807] 3.4 cherry pick: 82ec02db7fe6 & ec42ab5e0cb3 Windows installer fixes

2014-03-04 Thread STINNER Victor
STINNER Victor added the comment: If I understood correctly, Python 3.4 cannot be uninstalled if pip was upgraded. IMO this bug is critical and must be fixed in Python 3.4.0. But be careful, the fix has also a bug: it requires changeset 16f91d87ff39 (see cherry-pick issue #20830). --

[issue20830] 3.4 cherry-pick: 16f91d87ff39: "pip install " didn't work on Windows

2014-03-04 Thread STINNER Victor
STINNER Victor added the comment: Hum, it looks like 16f91d87ff39 must be come after ec42ab5e0cb3 ("Close #20568: install unversioned pip command on Windows") which has its own cherry-pick issue: #20807. -- dependencies: +3.4 cherry pick: 82ec02db7fe6 & ec42ab5e0cb3 Windows installer

[issue20818] 3.4 cherry pick: 5fa3f6d82d61 and a8470f88e7b4 - OS X installer use SQLite 3.8.3.1 (instead of 3.8.3)

2014-03-04 Thread STINNER Victor
STINNER Victor added the comment: On OS X, the change looks useless: http://bugs.python.org/issue20465#msg212525 It can wait Python 3.4.0, but at the same time, the change looks safe. -- ___ Python tracker ___

[issue20818] 3.4 cherry pick: 5fa3f6d82d61 and a8470f88e7b4 - OS X installer use SQLite 3.8.3.1 (instead of 3.8.3)

2014-03-04 Thread STINNER Victor
Changes by STINNER Victor : -- title: 3.4 cherry pick: 5fa3f6d82d61 and a8470f88e7b4 - Windows and OS X installer use SQLite 3.8.3.1 (instead of 3.8.3) -> 3.4 cherry pick: 5fa3f6d82d61 and a8470f88e7b4 - OS X installer use SQLite 3.8.3.1 (instead of 3.8.3) ___

[issue20818] 3.4 cherry pick: 5fa3f6d82d61 and a8470f88e7b4 - Windows and OS X installer use SQLite 3.8.3.1 (instead of 3.8.3)

2014-03-04 Thread STINNER Victor
Changes by STINNER Victor : -- title: 3.4 cherry pick: 5fa3f6d82d61 and a8470f88e7b4 - OS X installer use SQLite 3.8.3.1 -> 3.4 cherry pick: 5fa3f6d82d61 and a8470f88e7b4 - Windows and OS X installer use SQLite 3.8.3.1 (instead of 3.8.3) ___ Python

[issue20818] 3.4 cherry pick: 5fa3f6d82d61 and a8470f88e7b4 - OS X installer use SQLite 3.8.3.1

2014-03-04 Thread STINNER Victor
STINNER Victor added the comment: Links: changesets 5fa3f6d82d61 and a8470f88e7b4 -- nosy: +haypo ___ Python tracker ___ ___ Python-bu

[issue20808] 3.4 cherry pick: 6a1711c96fa6 (Popen.__del__ traceback)

2014-03-04 Thread STINNER Victor
STINNER Victor added the comment: Link to the changeset: 6a1711c96fa6 -- nosy: +haypo ___ Python tracker ___ ___ Python-bugs-list mail

[issue20789] [3.4] cherrypick 5dec1604322c: old sys.path_hooks importer does not work with Python 3.4.0rc1

2014-03-04 Thread STINNER Victor
STINNER Victor added the comment: It's a regression compared to 3.3, so it looks important to fix it in Python 3.4(.0). -- nosy: +haypo ___ Python tracker ___ __

[issue20789] [3.4] cherrypick 5dec1604322c: old sys.path_hooks importer does not work with Python 3.4.0rc1

2014-03-04 Thread STINNER Victor
Changes by STINNER Victor : -- title: [3.4] cherrypick 5dec1604322c -> [3.4] cherrypick 5dec1604322c: old sys.path_hooks importer does not work with Python 3.4.0rc1 ___ Python tracker _

[issue20646] 3.4 cherry-pick: 180e4b678003 select and kqueue round the timeout aways from zero

2014-03-04 Thread STINNER Victor
STINNER Victor added the comment: Let's wait 3.4.1 for this one. -- resolution: -> wont fix status: open -> closed ___ Python tracker ___ ___

[issue20648] 3.4 cherry-pick: multiple changesets for asyncio

2014-03-04 Thread STINNER Victor
STINNER Victor added the comment: > Can I close this issue now? Yes. If something really critical appears, a new issue can be opened. -- resolution: -> fixed status: open -> closed ___ Python tracker

[issue20846] pip can fail on windows but gives success message

2014-03-04 Thread Martin v . Löwis
Martin v. Löwis added the comment: David, Mark: I agree that there is no bug in Python or pip here. The installation *does* complete successfully, and the engine module is installed. It just fails to work because of a syntax error (which would be a bug in pyttsx had it claimed to support Pytho

[issue20251] socket.recvfrom_into crash with empty buffer

2014-03-04 Thread koobs
Changes by koobs : -- nosy: +koobs ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mail

[issue18886] BytesGenerator does not handle 'binary' CTE correctly

2014-03-04 Thread Surya K
Surya K added the comment: I have a fix for this. But before putting it forward, can you please tell me about the below 1. email.header.Header.encode() --method How different is it from str.encode()? Does [1] method also performs what str.encode() does internally? -- nosy: +suryak __

[issue20744] shutil should not use distutils

2014-03-04 Thread Derek Chiang
Derek Chiang added the comment: New contributor here. I'm submitting a patch; please let me know if I'm doing something wrong :) -- keywords: +patch nosy: +derekchiang93 Added file: http://bugs.python.org/file34283/patch-20744.diff ___ Python tracke

[issue19142] Cross-compile fails trying to execute foreign pgen on build host

2014-03-04 Thread Gregory P. Smith
Changes by Gregory P. Smith : -- nosy: +gregory.p.smith ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue20825] containment test for "ip_network in ip_network"

2014-03-04 Thread Michel Albert
Michel Albert added the comment: I second "supernet_of" and "subnet_of". I'll implement it as soon as I get around it. I have been thinking about using ``in`` and ``<=`` and, while I initially liked the idea for tests, I find both operators too ambiguous. With ``in`` there's the already menti

[issue15819] Unable to build Python out-of-tree when source tree is readonly.

2014-03-04 Thread Gregory P. Smith
Changes by Gregory P. Smith : -- nosy: +gregory.p.smith ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/