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

2014-03-21 Thread Zachary Ware
Changes by Zachary Ware : Removed file: http://bugs.python.org/file33233/suppress_environ_warning.diff ___ Python tracker ___ ___ Python-bugs-

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

2014-03-21 Thread Zachary Ware
Changes by Zachary Ware : Removed file: http://bugs.python.org/file33235/suppress_environ_warning.v2.diff ___ Python tracker ___ ___ Python-bu

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

2014-03-21 Thread Zachary Ware
Zachary Ware added the comment: Here's a slightly less ugly version of the patch. I would really appreciate some review on this; this should solve a test_idle issue that was exacerbated by issue #15968 (for unknown reasons). -- priority: low -> normal Added file: http://bugs.python.or

[issue21015] support SSL_CTX_set_ecdh_auto on newer OpenSSLs

2014-03-21 Thread Donald Stufft
Donald Stufft added the comment: I always have to do things the hard way ;) Note that my patch changes the set_ecdh_curve() method to no longer require a name. If that is too big of a change for Python 3.4 we can just hardcode the same name inside of ssl.py for 3.4 -- ___

[issue21015] support SSL_CTX_set_ecdh_auto on newer OpenSSLs

2014-03-21 Thread Nick Coghlan
Nick Coghlan added the comment: Marking this as "buildbot", as Donald suspects it's the culprit for the current SSL related buildbot failures after merging issue 20995. Also Donald, welcome to the "I broke (some of) the buildbots" club, although you did come up with something more exotic than

[issue15968] Incorporate Tcl/Tk/Tix into the Windows build process

2014-03-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset c12cc78d59c1 by Zachary Ware in branch 'default': Issue #15968: Temporarily revert change to PCbuild/rt.bat http://hg.python.org/cpython/rev/c12cc78d59c1 -- ___ Python tracker

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

2014-03-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset c12cc78d59c1 by Zachary Ware in branch 'default': Issue #15968: Temporarily revert change to PCbuild/rt.bat http://hg.python.org/cpython/rev/c12cc78d59c1 -- nosy: +python-dev ___ Python tracker

[issue21018] [patch] added missing documentation about escaping characters for configparser

2014-03-21 Thread R. David Murray
Changes by R. David Murray : -- nosy: +lukasz.langa ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue21015] support SSL_CTX_set_ecdh_auto on newer OpenSSLs

2014-03-21 Thread Donald Stufft
Donald Stufft added the comment: I don't have a new enough OpenSSL to test against SSL_CTX_set_ecdh_auto and I don't really know C very well so I didn't want to do try to handle that. That being said, here is a patch that allows you to call SSLContext().set_ecdh_curve() without any argument, a

[issue21017] Enable Debug Tix build on Windows

2014-03-21 Thread Benjamin Peterson
Benjamin Peterson added the comment: http://svn.python.org/view?view=revision&revision=89016 -- nosy: +benjamin.peterson ___ Python tracker ___ __

[issue21018] [patch] added missing documentation about escaping characters for configparser

2014-03-21 Thread Arun Persaud
New submission from Arun Persaud: Couldn't find how to escape % and $ in the documentation, so I thought I add a short patch. -- assignee: docs@python components: Documentation files: mywork.patch keywords: patch messages: 214442 nosy: Arun.Persaud, docs@python priority: normal severity

[issue21017] Enable Debug Tix build on Windows

2014-03-21 Thread Zachary Ware
Zachary Ware added the comment: Here's the patch to cpython that will be needed to enable the debug Tix build. -- keywords: +patch Added file: http://bugs.python.org/file34561/issue21017-cpython.diff ___ Python tracker

[issue21000] json.tool ought to have a help flag

2014-03-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset a2ad16e86e60 by Benjamin Peterson in branch 'default': improve the command-line interface of json.tool (closes #21000) http://hg.python.org/cpython/rev/a2ad16e86e60 -- nosy: +python-dev resolution: -> fixed stage: patch review -> committed/

[issue21017] Enable Debug Tix build on Windows

2014-03-21 Thread Zachary Ware
New submission from Zachary Ware: Here's a patch to be applied to svn.python.org/projects/external/tix-8.4.3.x to enable building Tix in Debug configuration. It also eliminates some superfluous warnings due to unrecognized command line options. Closely related to #15968. -- component

[issue21000] json.tool ought to have a help flag

2014-03-21 Thread Benjamin Peterson
Benjamin Peterson added the comment: Thanks a lot for the excellent patch! -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue15968] Incorporate Tcl/Tk/Tix into the Windows build process

2014-03-21 Thread Zachary Ware
Zachary Ware added the comment: Committed. Instead of splitting out the Tix stuff, I just disabled building Tix in Debug configuration. I will open a new issue for enabling the Debug Tix build. Thank you Martin and Tim for the votes of confidence, and Jeremy for starting this off!

[issue15968] Incorporate Tcl/Tk/Tix into the Windows build process

2014-03-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset c2e2dc6c8769 by Zachary Ware in branch 'default': Issue #15968: Incorporated Tcl, Tk, and Tix builds into the Windows build http://hg.python.org/cpython/rev/c2e2dc6c8769 -- nosy: +python-dev ___ Python tr

[issue21016] trace: $prefix and $exec_prefix improperly replaced on Fedora

2014-03-21 Thread Ben Boeckel
New submission from Ben Boeckel: In the --ignore-dir handling of trace.py, the following is done: s = s.replace("$prefix", os.path.join(sys.base_prefix, "lib", "python" + sys.version[:3])) s

[issue1615] PyObject_GenericGetAttr suppresses AttributeErrors in descriptors

2014-03-21 Thread Ethan Furman
Changes by Ethan Furman : -- stage: needs patch -> test needed versions: +Python 3.5 -Python 3.4 ___ Python tracker ___ ___ Python-bugs

[issue8297] AttributeError message text should include module name

2014-03-21 Thread Ethan Furman
Ethan Furman added the comment: ysj.ray: Your patch looks good. I had to make some changes since we're now at 3.5. Before I can use your code, though, you need to sign the CLA [1]. Thanks. [1] https://www.python.org/psf/contrib/contrib-form -- __

[issue21015] support SSL_CTX_set_ecdh_auto on newer OpenSSLs

2014-03-21 Thread Donald Stufft
Donald Stufft added the comment: Ok, looks like everyone just uses prime256v1, so we should use that! -- ___ Python tracker ___ ___ Py

[issue21015] support SSL_CTX_set_ecdh_auto on newer OpenSSLs

2014-03-21 Thread Donald Stufft
Donald Stufft added the comment: Heh, I was just getting ready to figure out if I should write this ticket or not :) I think we should do this. Nginx also defaults to prime256v1 (which is NIST P-256), DJB seems to think that's an unsafe curve though (http://safecurves.cr.yp.to/). --

[issue21015] support SSL_CTX_set_ecdh_auto on newer OpenSSLs

2014-03-21 Thread Antoine Pitrou
New submission from Antoine Pitrou: >From the OpenSSL changelog: *) Support for automatic EC temporary key parameter selection. If enabled the most preferred EC parameters are automatically used instead of hardcoded fixed parameters. Now a server just has to call: SSL_CTX_set_ec

[issue21014] `1` => `True`; for tutorial docs

2014-03-21 Thread Samuel Marks
New submission from Samuel Marks: Particularly for new programmers `True` makes more sense than `1` when doing boolean logic. If you aren't going to accept this patch; at least add in a sentence explaining that: `> 1 == True`. Best, Samuel Marks -- assignee: docs@python components:

[issue20995] Use Better Default Ciphers for the SSL Module

2014-03-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset 60f696488c4f by Donald Stufft in branch 'default': Merge changes from 3.4 to bring in fixes for Issue #20995 http://hg.python.org/cpython/rev/60f696488c4f -- ___ Python tracker

[issue20995] Use Better Default Ciphers for the SSL Module

2014-03-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset e9749a7aa958 by Donald Stufft in branch '3.4': Issue #20995: Enhance default ciphers used by the ssl module http://hg.python.org/cpython/rev/e9749a7aa958 -- nosy: +python-dev ___ Python tracker

[issue16047] Tools/freeze no longer works in Python 3

2014-03-21 Thread Meador Inge
Meador Inge added the comment: Sure. I will refresh it tonight or sometime tomorrow. -- ___ Python tracker ___ ___ Python-bugs-list m

[issue20906] Issues in Unicode HOWTO

2014-03-21 Thread Antoine Pitrou
Antoine Pitrou added the comment: > "UnicodeEncodeError: 'charmap' codec can't encode character '\u265e' in > position 13: character maps to undefined". That's because stdout is treated as a regular bytestream under Windows (as it is under POSIX), and it therefore uses the current "codepage"

[issue20995] Use Better Default Ciphers for the SSL Module

2014-03-21 Thread Donald Stufft
Donald Stufft added the comment: Added the docs changes -- Added file: http://bugs.python.org/file34558/better-ciphers-with-docs.diff ___ Python tracker ___ _

[issue17846] Building Python on Windows - Supplementary info

2014-03-21 Thread Martin v . Löwis
Martin v. Löwis added the comment: No, Perl has not been mandatory for the build process, at least not for the last decade or so. It may occasionally happen that it is mandatory to build OpenSSL, but that would be a bug in our copy of OpenSSL. -- __

[issue20995] Use Better Default Ciphers for the SSL Module

2014-03-21 Thread Donald Stufft
Donald Stufft added the comment: Ah yes, I skipped over that looking for a place where we were detailing what ciphers were picked. Ok Thanks! -- ___ Python tracker ___ _

[issue20995] Use Better Default Ciphers for the SSL Module

2014-03-21 Thread Antoine Pitrou
Antoine Pitrou added the comment: Well, the doc currently says: """Starting from Python 3.2.3, the ssl module disables certain weak ciphers by default, but you may want to further restrict the cipher choice. For example:: context = ssl.SSLContext(ssl.PROTOCOL_TLSv1) context.set_ciphers('

[issue17846] Building Python on Windows - Supplementary info

2014-03-21 Thread Mark Lawrence
Mark Lawrence added the comment: I simply do not understand the last comment, Perl has always been part of the build process on Windows. Are you saying that the build process has to change? -- nosy: +BreamoreBoy ___ Python tracker

[issue20995] Use Better Default Ciphers for the SSL Module

2014-03-21 Thread Donald Stufft
Donald Stufft added the comment: Hmm, I'm not sure what needs updated. The docs only say that ssl module disabled certain weak ciphers by default which is still the case. Was there some specific place or wording you were looking for? -- ___ Python t

[issue17846] Building Python on Windows - Supplementary info

2014-03-21 Thread Martin v . Löwis
Martin v. Löwis added the comment: Please get perl out of this discussion. A perl installation shouldn't be necessary to compile Python. (IOW, -1 on any patch that recommends that Perl should be installed to build Python) -- nosy: +loewis ___ Python

[issue20995] Use Better Default Ciphers for the SSL Module

2014-03-21 Thread Donald Stufft
Donald Stufft added the comment: I can add that. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue20995] Use Better Default Ciphers for the SSL Module

2014-03-21 Thread Antoine Pitrou
Antoine Pitrou added the comment: The patch will also need updating the "Cipher selection" paragraph in ssl.rst, I think. -- ___ Python tracker ___ _

[issue20995] Use Better Default Ciphers for the SSL Module

2014-03-21 Thread Antoine Pitrou
Antoine Pitrou added the comment: (for the record and for the sake of comparison, Postfix's "high" security setting is "ALL:!EXPORT:!LOW:!MEDIUM:+RC4:@STRENGTH") -- ___ Python tracker _

[issue20913] Standard Library documentation needs SSL security best practices doc.

2014-03-21 Thread Antoine Pitrou
Antoine Pitrou added the comment: Updated patch with Martin's suggested changes, and various other nits. -- Added file: http://bugs.python.org/file34557/ssl_best2.patch ___ Python tracker __

[issue20995] Use Better Default Ciphers for the SSL Module

2014-03-21 Thread Nick Coghlan
Nick Coghlan added the comment: Shall we commit the new string for 3.5 for the time being? I'm currently working on a PEP to help define a policy for dealing with network security related issues/enhancements in maintenance branches, so I don't think we should touch those until we have that dis

[issue8297] AttributeError message text should include module name

2014-03-21 Thread Ethan Furman
Changes by Ethan Furman : -- versions: +Python 3.5 -Python 3.4 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue21000] json.tool ought to have a help flag

2014-03-21 Thread Raymond Hettinger
Raymond Hettinger added the comment: This looks like a nice improvement. -- nosy: +rhettinger ___ Python tracker ___ ___ Python-bugs-l

[issue13856] xmlrpc / httplib changes to allow for certificate verification

2014-03-21 Thread Jakub Wilk
Changes by Jakub Wilk : -- nosy: +jwilk ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org

[issue10240] dict.update.__doc__ is misleading

2014-03-21 Thread Raymond Hettinger
Raymond Hettinger added the comment: > Maybe the fastpath should do a strict check and not > be used for subclasses of dict? This code is ancient and well-established. IMO, nothing good can come from changing it (besides slowing down code that is already deployed and working fine).

[issue20956] tokenize module claims tokenize.tokenize returns namedtuple, but it doesn't

2014-03-21 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- nosy: +terry.reedy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue13630] IDLE: Find(ed) text is not highlighted while dialog box is open

2014-03-21 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.5 -Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue19995] %c, %o, %x, %X accept non-integer values instead of raising an exception

2014-03-21 Thread Ethan Furman
Ethan Furman added the comment: Final status: 3.4 -> DeprecationWarning 3.5 -> TypeError -- resolution: -> fixed stage: commit review -> committed/rejected status: open -> closed ___ Python tracker _

[issue20884] importlib/__init__.py can not be loaded without __file__ - breaks cxFreeze

2014-03-21 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- stage: -> committed/rejected ___ Python tracker ___ ___ Python-bugs-list mailing

[issue17621] Create a lazy import loader mixin

2014-03-21 Thread Brett Cannon
Brett Cannon added the comment: New patch that includes docs and integrates the tests. If someone who understands import can look it over and give me an LGTM that would be appreciated. -- Added file: http://bugs.python.org/file34556/lazy_loader.diff ___

[issue17846] Building Python on Windows - Supplementary info

2014-03-21 Thread Zachary Ware
Zachary Ware added the comment: No, 3.4 uses VS 2010. Your patch changes the line from "hg update 3.4" to "hg update 3.3", which is not a legitimate change, in fact it undoes a change that Éric Araujo just made. With the release of 3.4.0, 3.4 became the current maintenance branch and 3.3 mov

[issue21013] server-specific SSL context configuration

2014-03-21 Thread Donald Stufft
Donald Stufft added the comment: Nah it should be fine to enable that, and it's preferable to do so. The server selects the cipher anyways in the TLS handshake. That just tells the server to prefer it's list for precedence and not the client list. -- __

[issue21013] server-specific SSL context configuration

2014-03-21 Thread Antoine Pitrou
Antoine Pitrou added the comment: (also perhaps enable OP_CIPHER_SERVER_PREFERENCE, although it seems it could cause interoperability problems with some clients) -- ___ Python tracker _

[issue20421] expose SSL socket protocol version

2014-03-21 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +dstufft ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue20913] Standard Library documentation needs SSL security best practices doc.

2014-03-21 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +dstufft ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue21007] List of development releases in PEPs like 429 should be links to download pages

2014-03-21 Thread Ned Deily
Ned Deily added the comment: AFAIK, traditionally, there have not been separate download pages for each pre-release of a new feature (e.g. 3.4.0) or maintenance (e.g. 3.3.5) release. The usual practice has been to create *one* release page at the usual URI (e.g. https://www.python.org/downloa

[issue21013] server-specific SSL context configuration

2014-03-21 Thread Antoine Pitrou
New submission from Antoine Pitrou: Currently, create_default_context() doesn't do anything special for server use. It seems the configuration could be improved, though: - PROTOCOL_TLSv1 is suboptimal for servers: a "TLSv1" server can't accept a TLSv1.2 client, but a "SSLv23" server will; so w

[issue20995] Use Better Default Ciphers for the SSL Module

2014-03-21 Thread Antoine Pitrou
Antoine Pitrou added the comment: > Er, I typed issue and meant usage. Right now the only difference > between restricted ciphers and the default ciphers is restricted > ciphers have no RC4 and no DSS. You wanted this issue limited to > client changes and I'm not sure how to do that without enabl

[issue20995] Use Better Default Ciphers for the SSL Module

2014-03-21 Thread Donald Stufft
Donald Stufft added the comment: Er, I typed issue and meant usage. Right now the only difference between restricted ciphers and the default ciphers is restricted ciphers have no RC4 and no DSS. You wanted this issue limited to client changes and I'm not sure how to do that without enabling RC

[issue20995] Use Better Default Ciphers for the SSL Module

2014-03-21 Thread Antoine Pitrou
Antoine Pitrou added the comment: Which "client issue"? Sorry, I've lost track :-) -- ___ Python tracker ___ ___ Python-bugs-list mail

[issue20995] Use Better Default Ciphers for the SSL Module

2014-03-21 Thread Donald Stufft
Donald Stufft added the comment: Not sure what you mean by client issue. Do you mean to keep RC4? -- ___ Python tracker ___ ___ Python

[issue16047] Tools/freeze no longer works in Python 3

2014-03-21 Thread Brett Cannon
Brett Cannon added the comment: Did you want to update your patch for Python 3.4 and 3.5, Meador? -- versions: +Python 3.5 -Python 3.3 ___ Python tracker ___

[issue20942] _frozen_importlib should not have a __file__ attribute

2014-03-21 Thread Brett Cannon
Brett Cannon added the comment: Here is a patch to change PyImport_ImportFrozenModuleObject() to not set __file__. Had to refactor some things as PyImport_ExecCodeModuleObject() was setting __file__ no matter what, so to avoid it even being used during import I had to change some things.

[issue20999] setlocale, getlocale succession --> ValueError or (None, None)

2014-03-21 Thread Ned Deily
Ned Deily added the comment: OK, let's close this issue as a duplicate of Issue18378 and continue the discussion there. -- resolution: works for me -> duplicate status: open -> closed superseder: -> locale.getdefaultlocale() fails on Mac OS X with default language set to English

[issue18378] locale.getdefaultlocale() fails on Mac OS X with default language set to English

2014-03-21 Thread Ned Deily
Ned Deily added the comment: Ronald or Dmitry, can you elaborate under what conditions you start your login shell on 10.9? I cannot reproduce the behavior you observe. With 10.9 Terminal.app and the default language settings in System Preferences and with the default Terminal.app preferences

[issue20995] Use Better Default Ciphers for the SSL Module

2014-03-21 Thread Antoine Pitrou
Antoine Pitrou added the comment: > Forgot to add! If you think splitting between "restricted" server and > client ciphers I can split them like that and upload a new patch. I was about to open a separate issue for the server side. How about restricting this issue to client usage? -- _

[issue21000] json.tool ought to have a help flag

2014-03-21 Thread Berker Peksag
Berker Peksag added the comment: Here's a new patch. Changes: - Updated the output of -h option - Added documentation - Switched to argparse -- Added file: http://bugs.python.org/file34554/issue21000_v2.diff ___ Python tracker

[issue20995] Use Better Default Ciphers for the SSL Module

2014-03-21 Thread Donald Stufft
Donald Stufft added the comment: Forgot to add! If you think splitting between "restricted" server and client ciphers I can split them like that and upload a new patch. -- ___ Python tracker __

[issue20995] Use Better Default Ciphers for the SSL Module

2014-03-21 Thread Donald Stufft
Donald Stufft added the comment: Note: The RC4 and DSS exclusion existed previously on the restricted ciphers so we'd have to ask Christian why he did that. For me personally the restricted ciphers are intended to be best practice ciphers and that means no RC4. DSS here I'm kind of meh about t

[issue21012] Figure out how to best leverage pip in devinabox

2014-03-21 Thread Donald Stufft
Donald Stufft added the comment: Right now you can do ``pip install --download some/path --no-use-wheel `` and then ``pip install --no-index --find-links some/path `` In the future that'll be ``pip download`` instead probably. -- nosy: +dstufft ___

[issue10141] SocketCan support

2014-03-21 Thread Charles-François Natali
Charles-François Natali added the comment: > That AF_CAN was undefined (even though HAVE_LINUX_CAN_H is). This is on Ubuntu Jaunty, which I use for my Python core development. How dear... The latest change should be OK. -- ___ Python tracker

[issue21012] Figure out how to best leverage pip in devinabox

2014-03-21 Thread Brett Cannon
New submission from Brett Cannon: Probably the most complicated bit now for using devinabox is building the various bits of docs in a way that doesn't require mucking with the system python: * Having Python built * Creating a venv * Installing sphinx * Running the requisite Makefile with the p

[issue21001] Python 3.4 MSI installer doesn't work

2014-03-21 Thread Zachary Ware
Zachary Ware added the comment: I've used the same installer on multiple machines with no problems, as have many others; this leads me to believe that there is no problem with the MSI :) Did you use the same MSI file on both machines? Try re-downloading, or checking the size and md5sum of the

[issue21011] PyArg_ParseTupleAndKeywords doesn't take const char *keywords[]

2014-03-21 Thread Hristo Venev
New submission from Hristo Venev: This really annoys me. I have to store the literals in char[] and then make a char*[] from them. It would be better if a simple array of string literals could be used. It would also require less data space because string literals could be merged by the compile

[issue19714] Add tests for importlib.machinery.WindowsRegistryFinder

2014-03-21 Thread Claudiu.Popa
Changes by Claudiu.Popa : Added file: http://bugs.python.org/file34553/issue19714.patch ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue20995] Use Better Default Ciphers for the SSL Module

2014-03-21 Thread Antoine Pitrou
Antoine Pitrou added the comment: Ok, so I think the latest patch is mostly good but I don't understand why the "restricted ciphers" (again, misnomer) would ban RC4 (and DSS?). These are the ciphers used by higher-level client libs, and connection failures will confuse the hell out of people.

[issue21007] List of development releases in PEPs like 429 should be links to download pages

2014-03-21 Thread Ram Rachum
Ram Rachum added the comment: I looked for it for 10 minutes but couldn't find the link. I ended up using a URL from an old script. I still don't know how I was supposed to find it. -- ___ Python tracker _

[issue21010] asyncio doc typo

2014-03-21 Thread STINNER Victor
STINNER Victor added the comment: Fix applied, thanks. -- nosy: +haypo stage: committed/rejected -> ___ Python tracker ___ ___ Python

[issue21010] asyncio doc typo

2014-03-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset ef4f460e3c9e by Victor Stinner in branch '3.4': Close #21010: Fix typo in asyncio doc. Patch written by Claudiu Popa. http://hg.python.org/cpython/rev/ef4f460e3c9e New changeset 7761b3dff2e8 by Victor Stinner in branch 'default': (Merge 3.4) Close #

[issue21006] asyncio.docs : create_subprocess_exec example does not work on windows

2014-03-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset ab0aa412fca2 by Victor Stinner in branch '3.4': Issue #21006: Fix subprocess example on Windows in asyncio doc http://hg.python.org/cpython/rev/ab0aa412fca2 -- ___ Python tracker

[issue21005] asyncio.docs : asyncio.subprocess.DEVNULL doc inadequate

2014-03-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset 230510d0cb92 by Victor Stinner in branch '3.4': Close #21005: Fix documentation of asyncio.subprocess.DEVNULL http://hg.python.org/cpython/rev/230510d0cb92 -- resolution: -> fixed stage: -> committed/rejected status: open -> closed __

[issue21008] Update devinabox for Python 3.4

2014-03-21 Thread Brett Cannon
Changes by Brett Cannon : -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue21009] Potential deadlock in concurrent futures when garbage collection occurs during Queue.get

2014-03-21 Thread Chris Farrow
Changes by Chris Farrow : -- nosy: +Chris.Farrow ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue21010] asyncio doc typo

2014-03-21 Thread Claudiu.Popa
New submission from Claudiu.Popa: There is an invalid item "meth:`resume_reading`". -- assignee: docs@python components: Documentation files: asyncio_doc_fix.patch keywords: patch messages: 214381 nosy: Claudiu.Popa, docs@python priority: normal severity: normal status: open title: async

[issue21009] Potential deadlock in concurrent futures when garbage collection occurs during Queue.get

2014-03-21 Thread Mark Dickinson
Changes by Mark Dickinson : -- nosy: +mark.dickinson ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue21009] Potential deadlock in concurrent futures when garbage collection occurs during Queue.get

2014-03-21 Thread Simon Jagoe
New submission from Simon Jagoe: At Enthought we have been tracking a deadlock in some code that turned out to be due to the following scenario: 0) There is some cyclic garbage that requires collection; an object in the garbage is referred to by a weakref with a callback 1) You have a lock

[issue18566] In unittest.TestCase docs for setUp() and tearDown() don't mention AssertionError

2014-03-21 Thread Nitika Agarwal
Nitika Agarwal added the comment: Hi, I am attaching a patch with the changes made as suggested by py.user. -- nosy: +nitika Added file: http://bugs.python.org/file34550/document18566.patch ___ Python tracker _

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

2014-03-21 Thread Claudiu.Popa
Claudiu.Popa added the comment: My pleasure! -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.py

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

2014-03-21 Thread Brett Cannon
Brett Cannon added the comment: Thanks for the patch! -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Pytho

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

2014-03-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset 395904f70d6a by Brett Cannon in branch 'default': Issue #20627: xmlrpc.client.ServerProxy is now a context manager. http://hg.python.org/cpython/rev/395904f70d6a -- nosy: +python-dev ___ Python tracker <

[issue20884] importlib/__init__.py can not be loaded without __file__ - breaks cxFreeze

2014-03-21 Thread Jurko Gospodnetić
Jurko Gospodnetić added the comment: Thanks Brett! :-) -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https

[issue20884] importlib/__init__.py can not be loaded without __file__ - breaks cxFreeze

2014-03-21 Thread Brett Cannon
Changes by Brett Cannon : -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue20884] importlib/__init__.py can not be loaded without __file__ - breaks cxFreeze

2014-03-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset b5b81a3eb6e6 by Brett Cannon in branch '3.4': Issue #20884: Don't assume in importlib.__init__ that __file__ is http://hg.python.org/cpython/rev/b5b81a3eb6e6 New changeset 42ae7b2524a2 by Brett Cannon in branch 'default': Merge for issue #20884 http

[issue19165] Change formatter warning to DeprecationWarning in 3.5

2014-03-21 Thread Brett Cannon
Changes by Brett Cannon : -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue18967] Find a less conflict prone approach to Misc/NEWS

2014-03-21 Thread Zachary Ware
Zachary Ware added the comment: R. David Murray wrote: > I want no script asking me questions. Post-facto errors for omissions are > fine (and if I have to positively say no in the input file, that's fine). > tkinter is right out. I have been planning a command line interface, something along t

[issue19165] Change formatter warning to DeprecationWarning in 3.5

2014-03-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset 455e5385752a by Brett Cannon in branch 'default': Issue #19165: The formatter module graduates to full deprecation. http://hg.python.org/cpython/rev/455e5385752a -- nosy: +python-dev ___ Python tracker <

[issue21008] Update devinabox for Python 3.4

2014-03-21 Thread Brett Cannon
New submission from Brett Cannon: E.g. with pip included it makes setting up coverage.py easier. -- assignee: brett.cannon messages: 214371 nosy: brett.cannon priority: low severity: normal stage: needs patch status: open title: Update devinabox for Python 3.4 __

[issue19714] Add tests for importlib.machinery.WindowsRegistryFinder

2014-03-21 Thread Claudiu.Popa
Claudiu.Popa added the comment: Hello. Here's a patch for this issue. It tests only the conditions described by Eric. -- keywords: +patch nosy: +Claudiu.Popa Added file: http://bugs.python.org/file34549/issue19714.patch ___ Python tracker

[issue21000] json.tool ought to have a help flag

2014-03-21 Thread Antoine Pitrou
Antoine Pitrou added the comment: Perhaps this thing should use argparse? -- nosy: +pitrou ___ Python tracker ___ ___ Python-bugs-list

[issue13630] IDLE: Find(ed) text is not highlighted while dialog box is open

2014-03-21 Thread Tal Einat
Tal Einat added the comment: I"m considering updating SearchBar and posting a patch. Marco, any chance you could detail the quirks and bugs you experienced when using SearchBar? -- nosy: +taleinat ___ Python tracker

[issue21000] json.tool ought to have a help flag

2014-03-21 Thread Benjamin Peterson
Benjamin Peterson added the comment: Very nice, but your help message still doesn't explain what json.tool does. :) -- ___ Python tracker ___

  1   2   >