[issue22546] Wrong default precision in documentation for format

2014-10-04 Thread Terry J. Reedy
Terry J. Reedy added the comment: I see now that my expectation, based on decimal rounding rather than binary conversion and rounding, was wrong ;-) >>> 33.14159265358979323846264338327950288419 == 33.1415926535898 True >>> 33.14159265358979323846264338327950288419 == 33.14159265358979 False >>>

[issue14243] tempfile.NamedTemporaryFile not particularly useful on Windows

2014-10-04 Thread Martin Panter
Changes by Martin Panter : -- nosy: +vadmium ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue7175] Define a standard location and API for configuration files

2014-10-04 Thread Martin Panter
Changes by Martin Panter : -- nosy: +vadmium ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue20267] TemporaryDirectory does not resolve path when created using a relative path

2014-10-04 Thread Antony Lee
Antony Lee added the comment: The change would be backwards-incompatible but also mimics the behavior of NamedTemporaryFile (which also fails to delete the file if the containing folder has been renamed -- this is easy to verify manually). I guess the other option would be to use fd-based seman

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

2014-10-04 Thread Dan O'Reilly
Dan O'Reilly added the comment: Hey, my first committed patch :) Thanks for helping to push this through, Antoine! -- ___ Python tracker ___

[issue20997] Wrong URL fragment identifier in search result

2014-10-04 Thread Mark Lawrence
Mark Lawrence added the comment: What's the verdict on this guys? -- nosy: +BreamoreBoy status: pending -> open ___ Python tracker ___ ___

[issue21231] Issue a python 3 warning when old style classes are defined.

2014-10-04 Thread Mark Lawrence
Mark Lawrence added the comment: Can this be closed as "won't fix" or what? -- nosy: +BreamoreBoy status: pending -> open ___ Python tracker ___ _

[issue20394] Coverity complains on audioop

2014-10-04 Thread Mark Lawrence
Mark Lawrence added the comment: Can we have a decision as to whether or not the patch should be back ported to 2.7. -- nosy: +BreamoreBoy status: pending -> open ___ Python tracker ___

[issue21623] build ssl failed use vs2010 express

2014-10-04 Thread Mark Lawrence
Mark Lawrence added the comment: I have never had a problem building ssl with vs2010 express so can this be closed? -- nosy: +BreamoreBoy status: pending -> open ___ Python tracker

[issue15862] IDLE not working when due to wrong Hard Drive point of os.path.expanduser

2014-10-04 Thread Mark Lawrence
Mark Lawrence added the comment: @Terry what is your take on this? -- nosy: +BreamoreBoy, terry.reedy status: pending -> open ___ Python tracker ___ _

[issue21278] Running the test suite with -v makes the test_ctypes and the test_zipimport erroneously reported as failed

2014-10-04 Thread Mark Lawrence
Mark Lawrence added the comment: As there has been no response can this be closed? -- nosy: +BreamoreBoy status: pending -> open ___ Python tracker ___ __

[issue1757072] Zipfile robustness

2014-10-04 Thread Mark Lawrence
Mark Lawrence added the comment: I'm assuming that this can now be closed. -- nosy: +BreamoreBoy status: pending -> open ___ Python tracker ___

[issue21231] Issue a python 3 warning when old style classes are defined.

2014-10-04 Thread Ezio Melotti
Changes by Ezio Melotti : -- status: open -> pending ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue22552] ctypes.CDLL returns singleton objects, resulting in usage conflicts

2014-10-04 Thread Ivan Pozdeev
Ivan Pozdeev added the comment: @R. David Murray: haha, the reverse change that introduced this problem in the first place! issue 14201's problem is exactly why I was going to suggest to also make _FuncPtr's compare equal if they point to the same function. @eryksun: Packages do this because i

[issue18131] Tkinter Variables require a proper master

2014-10-04 Thread Terry J. Reedy
Terry J. Reedy added the comment: My first message discussed two different issues. The first, generalized, is that unconditionally using tkinter._default_root, which can be either None or absent, as a backup for master=None in __init__ functions, seems a bit sloppy. Image.__init__ does this

[issue21623] build ssl failed use vs2010 express

2014-10-04 Thread Zachary Ware
Zachary Ware added the comment: Mo Jia: if you have any information to add later, feel free to reopen the issue, but so far nobody else can reproduce your error. -- assignee: -> zach.ware stage: -> resolved status: open -> closed ___ Python tracker

[issue22552] ctypes.CDLL returns singleton objects, resulting in usage conflicts

2014-10-04 Thread eryksun
eryksun added the comment: > How does this relate to issue 14201? That is, is the answer just > "use getitem if you don't want caching"? Unlike CDLL.__getitem__, LibraryLoader.__getitem__ does use the attribute cache. Why use a LibraryLoader if you don't want the cached libs and access to t

[issue21699] Windows Python 3.4.1 pyvenv doesn't work in directories with spaces.

2014-10-04 Thread Nick Coghlan
Nick Coghlan added the comment: Note that this is also tricky to test - we *don't* currently activate the venv in the test suite, instead relying on a "-m" invocation. However, I think this error shows that a new automated test is needed that covers the activation case, as there are some addit

[issue21578] Misleading error message when ImportError called with invalid keyword args

2014-10-04 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the review, David. > The standard error message for this case is: > > xxx() got an unexpected keyword argument 'foo' I found two similar messages in the codebase: * In Modules/itertoolsmodule.c: PyErr_SetString(PyExc_TypeError, "zip_lon

[issue15862] IDLE: startup problem when HOME does not exist

2014-10-04 Thread Terry J. Reedy
Terry J. Reedy added the comment: This is one of multiple reports about problems with finding and reading HOME/.idlerc/*.*. I believe that if nothing else, Idle should issue a warning message (that not not crash Idle), set a flag, and continue. The configuration dialog should also warn that

[issue21699] Windows Python 3.4.1 pyvenv doesn't work in directories with spaces.

2014-10-04 Thread Nick Coghlan
Nick Coghlan added the comment: Also reducing the priority back to "normal" - the docs at https://docs.python.org/3/installing/ already specifically recommend the "python -m pip" spelling because it's the most universal. Calling "pip" directly is known to fail in a variety of situations. For

[issue18903] IDLE file-completion is case-sensitive in Windows

2014-10-04 Thread Terry J. Reedy
Terry J. Reedy added the comment: Wesley himself suggested that it is not ready to apply. There are currently 7 completion issues for Idle. I hope to someday work on all of them together, alone with a test file. But there are a couple of other issue clusters that I consider higher priority.

[issue6623] Lib/ftplib.py Netrc class should be removed.

2014-10-04 Thread Berker Peksag
Berker Peksag added the comment: Here's a patch with a whatsnew entry. -- stage: needs patch -> patch review Added file: http://bugs.python.org/file36807/issue6623.diff ___ Python tracker ___

[issue21072] Python docs and downloads not available for Egypt

2014-10-04 Thread Nick Coghlan
Nick Coghlan added the comment: Is this problem still occurring? There were recently some problems in other regions with *.python.org getting caught up in national IP filters, which our CDN provider has now resolved by providing us with dedicated IP addresses. These aren't shared with any othe

[issue1322] Deprecate platform.dist() and platform.linux_distribution() functions

2014-10-04 Thread Berker Peksag
Berker Peksag added the comment: Marc-Andre, could you please take a look to the latest patch? -- components: -Tests keywords: +needs review title: platform.dist() has unpredictable result under Linux -> Deprecate platform.dist() and platform.linux_distribution() functions type: behavi

[issue21338] Silent mode for compileall

2014-10-04 Thread Berker Peksag
Berker Peksag added the comment: Here's an updated patch. Thanks David. -- Added file: http://bugs.python.org/file36808/issue21338.diff ___ Python tracker ___ ___

[issue22552] ctypes.CDLL returns singleton objects, resulting in usage conflicts

2014-10-04 Thread eryksun
eryksun added the comment: > Packages do this because it's the natural thing to do I guess the tutorial is channeling projects toward using the cdll/windll LibraryLoader instances on Windows. It even shows using cdll.LoadLibrary('libc.so.6') on Linux. That's equivalent to CDLL('libc.so.6'); I

[issue8138] wsgiref.simple_server.SimpleServer claims to be multithreaded

2014-10-04 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue22555] Tracking issue for adjustments to binary/text boundary handling

2014-10-04 Thread Nick Coghlan
New submission from Nick Coghlan: See PEP 478 for the PEP level items targeting 3.5: http://www.python.org/dev/peps/pep-0478/ This is a tracking issue to help me keep track of some lower level items that didn't make the release PEP: * Improved Windows console Unicode support (see https://pypi

[issue22555] Tracking issue for adjustments to binary/text boundary handling

2014-10-04 Thread Nick Coghlan
Nick Coghlan added the comment: PEP 461 binary interpolation implementation issue: http://bugs.python.org/issue20284 -- dependencies: +Add codecs.convert_surrogateescape to "clean" surrogate escaped strings, Add wsgiref.util.dump_wsgistr & load_wsgistr, Allow backslashreplace error ha

[issue22552] ctypes.CDLL returns singleton objects, resulting in usage conflicts

2014-10-04 Thread Ivan Pozdeev
Ivan Pozdeev added the comment: > If you want cached libs without polluting ctypes.cdll or ctypes.windll, just > create your own instance such as windll = ctypes.LibraryLoader(ctypes.WinDLL). This one looks like the next best thing to the current state of affairs, requiring minimal change to e

[issue8138] wsgiref.simple_server.SimpleServer claims to be multithreaded

2014-10-04 Thread Berker Peksag
Berker Peksag added the comment: Looks like Werkzeug had a workaround for this bug: https://github.com/mitsuhiko/werkzeug/commit/f9e2fad30d34a6b0737539434c03c07c2bc658d4 -- ___ Python tracker _

[issue21578] Misleading error message when ImportError called with invalid keyword args

2014-10-04 Thread R. David Murray
R. David Murray added the comment: Just the first unexpected keyword. That's what happens if you pass more than one unexpected keyword to a python function. -- ___ Python tracker _

[issue22526] file iteration SystemError for huge lines (2GiB+)

2014-10-04 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue22555] Tracking issue for adjustments to binary/text boundary handling

2014-10-04 Thread Martin Panter
Changes by Martin Panter : -- nosy: +vadmium ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

<    1   2