[issue19193] Improve cross-references in tutorial

2013-10-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset ac826284fdd1 by Serhiy Storchaka in branch '2.7': Issue #19193: Improved cross-references in the tutorial. http://hg.python.org/cpython/rev/ac826284fdd1 New changeset 012380d57e44 by Serhiy Storchaka in branch '3.3': Issue #19193: Improved cross-ref

[issue19158] BoundedSemaphore.release() subject to races

2013-10-08 Thread Tim Peters
Changes by Tim Peters : -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___ _

[issue19158] BoundedSemaphore.release() subject to races

2013-10-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset e06edc0c7a49 by Tim Peters in branch '3.3': Issue 19158: a rare race in BoundedSemaphore could allow .release() too often. http://hg.python.org/cpython/rev/e06edc0c7a49 New changeset 7c56bf5afee6 by Tim Peters in branch 'default': Issue 19158: a r

[issue19200] grammar in forkserver docs

2013-10-08 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +sbt ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.or

[issue19165] Change formatter warning to DeprecationWarning in 3.5

2013-10-08 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue19201] lzma and 'x' mode open

2013-10-08 Thread Benjamin Peterson
Changes by Benjamin Peterson : -- nosy: +nadeem.vawda ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue19201] lzma and 'x' mode open

2013-10-08 Thread Tim Heaney
Changes by Tim Heaney : -- versions: +Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue19201] lzma and 'x' mode open

2013-10-08 Thread Tim Heaney
New submission from Tim Heaney: I love the 'x' mode open in recent versions of Python. I just discovered that lzma.open doesn't support it. It seems there's an elif that explicitly checks the modes allowed. I added "x" and "xb" to the choices and now it works as I would like. -- files

[issue3982] support .format for bytes

2013-10-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : Removed file: http://bugs.python.org/file32008/byte_format.py ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue3982] support .format for bytes

2013-10-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: Here is a proof of concept Python function, with a minimal test. It is similar to how str.format could be coded in Python, with re.split and ''.join, except that it does not allow anything before : in the format specification. By default (no format spec given)

[issue3982] support .format for bytes

2013-10-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : Added file: http://bugs.python.org/file32008/byte_format.py ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue3982] support .format for bytes

2013-10-08 Thread Glyph Lefkowitz
Glyph Lefkowitz added the comment: On Oct 8, 2013, at 3:19 PM, Augie Fackler wrote: > No, I'm not. In Mercurial, all end-user data is OPAQUE BYTES, and must remain > that way. The PEP 383 technique for handling file names is completely capable of round-tripping exact bytes, given one encoding

[issue19200] grammar in forkserver docs

2013-10-08 Thread Elazar Gershuni
New submission from Elazar Gershuni: in http://docs.python.org/3.4/library/multiprocessing.html#start-methods for `forkserver`: "whenever a new process is need the parent process connects to the server and requests that it fork a new process." replace "need " with "needed, ". -- assign

[issue3982] support .format for bytes

2013-10-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: Augie, to understand what Viktor meant, I suggest reading http://www.python.org/dev/peps/pep-0383/ One point of the pep is round-trip filenames without loss on all systems, which is just what you say you need. -- ___

[issue3982] support .format for bytes

2013-10-08 Thread Augie Fackler
Augie Fackler added the comment: On Oct 8, 2013, at 6:28 PM, "Terry J. Reedy" wrote: > http://www.python.org/dev/peps/pep-0383/ > One point of the pep is round-trip filenames without loss on all systems, > which is just what you say you need. At a quick skim, likely not good enough, because

[issue3982] support .format for bytes

2013-10-08 Thread Augie Fackler
Augie Fackler added the comment: On Oct 8, 2013, at 6:19 PM, Glyph Lefkowitz wrote: > Glyph Lefkowitz added the comment: > > On Oct 8, 2013, at 2:35 PM, Eric V. Smith wrote: > >> What proposal is actually on the table here? > > Sorry Eric, you're right, there is too much discussion here. Th

[issue3982] support .format for bytes

2013-10-08 Thread Augie Fackler
Augie Fackler added the comment: On Oct 8, 2013, at 5:24 PM, STINNER Victor wrote: > > STINNER Victor added the comment: > > 2013/10/8 Augie Fackler : >> sys.stdout.write('%(state)s %(path)s\n' % {'state': 'M', 'path': >> 'some/filesystem/path'}) >> >> except we don't know the encoding of th

[issue3982] support .format for bytes

2013-10-08 Thread Glyph Lefkowitz
Glyph Lefkowitz added the comment: On Oct 8, 2013, at 2:35 PM, Eric V. Smith wrote: > What proposal is actually on the table here? Sorry Eric, you're right, there is too much discussion here. This issue ought to be about .format, like the title says. There should be a separate ticket for %-

[issue19199] Remove PyThreadState.tick_counter field

2013-10-08 Thread Tim Peters
Changes by Tim Peters : -- nosy: +tim.peters ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue19199] Remove PyThreadState.tick_counter field

2013-10-08 Thread Tim Peters
Changes by Tim Peters : -- nosy: +arigo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org

[issue19199] Remove PyThreadState.tick_counter field

2013-10-08 Thread Antoine Pitrou
Antoine Pitrou added the comment: > Should we add a new counter to count the number of executed Python > instructions per thread? Or fix tick_counter? Let's just drop it. It's useless and nobody complained. -- ___ Python tracker

[issue19199] Remove PyThreadState.tick_counter field

2013-10-08 Thread STINNER Victor
STINNER Victor added the comment: PyThreadState.tick_counter field was added in 2002 by Armin Rigo: see issue #617311. "A very very small statistic-collecting patch. (...) The purpose is to give a useful measure of the number of interpreted bytecode instructions in a given thread." My patch w

[issue19199] Remove PyThreadState.tick_counter field

2013-10-08 Thread R. David Murray
R. David Murray added the comment: Should there be a mention in whats new in case any external tools are (still) looking at it and thinking it is meaningful? -- nosy: +nedbat, r.david.murray ___ Python tracker ___

[issue3982] support .format for bytes

2013-10-08 Thread Eric V. Smith
Eric V. Smith added the comment: I've lost track what we were talking about. I thought we were trying to support b''.format() in 3.4, for a restricted set of arguments. I don't see how a third-party package is going to help, if the goal is to allow 3.4 to be source compatible with 2.7. And the

[issue19199] Remove PyThreadState.tick_counter field

2013-10-08 Thread STINNER Victor
STINNER Victor added the comment: Here is a patch. I'm going to commit it in one week if nobody complains. -- keywords: +patch Added file: http://bugs.python.org/file32007/remove_tick_counter.patch ___ Python tracker

[issue3982] support .format for bytes

2013-10-08 Thread STINNER Victor
STINNER Victor added the comment: 2013/10/8 Augie Fackler : > sys.stdout.write('%(state)s %(path)s\n' % {'state': 'M', 'path': > 'some/filesystem/path'}) > > except we don't know the encoding of the filesystem path (Hi unix!) so we > have to treat the whole thing as opaque bytes. You are doing i

[issue19199] Remove PyThreadState.tick_counter field

2013-10-08 Thread Antoine Pitrou
Antoine Pitrou added the comment: Yes, we can :) -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue19199] Remove PyThreadState.tick_counter field

2013-10-08 Thread STINNER Victor
New submission from STINNER Victor: The C structure "PyThreadState" has a counter which is incremented in the bytecode evaluation loop (ceval.c), but never used. /* XXX doesn't mean anything anymore (the comment below is obsolete) => deprecate or remove? */ /* tick_counter is inc

[issue16129] No good way to set 'PYTHONIOENCODING' when embedding python.

2013-10-08 Thread Brecht Van Lommel
Brecht Van Lommel added the comment: I tested the patch on Windows and can confirm it solves the problem for Blender. -- ___ Python tracker ___ __

[issue3982] support .format for bytes

2013-10-08 Thread Augie Fackler
Augie Fackler added the comment: On Tue, Oct 8, 2013 at 5:11 PM, Antoine Pitrou wrote: > > Antoine Pitrou added the comment: > > > > > Punting this to 3.5 basically means we'll have to either wait for > > > > 3.5, or do something awful like use cffi to grab sprintf to port > > > > Mercurial. > >

[issue3982] support .format for bytes

2013-10-08 Thread Antoine Pitrou
Antoine Pitrou added the comment: > > > Punting this to 3.5 basically means we'll have to either wait for > > > 3.5, or do something awful like use cffi to grab sprintf to port > > > Mercurial. > > > > Or write a pure Python implementation. > > Hah. Probably too slow for anything beyond a proof

[issue19154] AttributeError: 'NoneType' in http/client.py when using select when file descriptor is closed.

2013-10-08 Thread Antoine Pitrou
Antoine Pitrou added the comment: I think ValueError should generally be raised when calling fileno() on a closed file. However, this is not something we're gonna change in a bugfix release, so it would go in 3.4 at the earliest. -- nosy: +pitrou __

[issue3982] support .format for bytes

2013-10-08 Thread Glyph Lefkowitz
Glyph Lefkowitz added the comment: On Oct 8, 2013, at 8:10 AM, Augie Fackler wrote: > Hah. Probably too slow for anything beyond a proof of concept, no? It should perform acceptably on PyPy ;-). -- ___ Python tracker

[issue18758] Fix internal references in the documentation

2013-10-08 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- dependencies: +Improve cross-references in cgi documentation, Improve cross-references in shlex documentation ___ Python tracker ___ ___

[issue18948] deliberately crashing tests should prevent core dumps

2013-10-08 Thread Antoine Pitrou
Antoine Pitrou added the comment: Patch committed. Thanks to both of you! -- resolution: -> fixed stage: needs patch -> committed/rejected status: open -> closed ___ Python tracker

[issue18948] deliberately crashing tests should prevent core dumps

2013-10-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset 1cbd3d9f7d61 by Antoine Pitrou in branch 'default': Issue #18948: improve SuppressCoreFiles to include Windows crash popup suppression, and use it in more tests. http://hg.python.org/cpython/rev/1cbd3d9f7d61 -- nosy: +python-dev __

[issue19198] Improve cross-references in cgi documentation

2013-10-08 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Here is a patch which fixes internal references in the documentation of the cgi module. -- assignee: docs@python components: Documentation files: refs.cgi.patch keywords: patch messages: 199249 nosy: docs@python, serhiy.storchaka priority: normal se

[issue19197] Improve cross-references in shlex documentation

2013-10-08 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Here is a patch which fixes internal references in the documentation of the shlex module. -- assignee: docs@python components: Documentation files: refs.shlex.patch keywords: patch messages: 199247 nosy: docs@python, serhiy.storchaka priority: norma

[issue18874] Add a new tracemalloc module to trace memory allocations

2013-10-08 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +tim.peters ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue19154] AttributeError: 'NoneType' in http/client.py when using select when file descriptor is closed.

2013-10-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: Florent, for future reference, marking an issue for 2.7 says to us "I want this fixed for 2.7". I agree that having 3 different error indicators for 3 similar functions is nasty. But this is partly due to the difference between object that *has* a fd (socket

[issue19154] AttributeError: 'NoneType' in http/client.py when using select when file descriptor is closed.

2013-10-08 Thread R. David Murray
R. David Murray added the comment: OK, I've looked at the docs and code, and as far as I can see this bug does not exist in Python3. Or at least in 3.4, which is the only place I'd feel safe about making a change to the exception type. To summarize: in 3.4 socket logic is based on RawIOBase,

[issue19196] Improve cross-references in distutils documentation

2013-10-08 Thread Georg Brandl
Changes by Georg Brandl : -- title: Improve cross-references in pickle documentation -> Improve cross-references in distutils documentation ___ Python tracker ___ __

[issue18758] Fix internal references in the documentation

2013-10-08 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- dependencies: +Improve cross-references in C API ___ Python tracker ___ ___ Python-bugs-list mailing

[issue18758] Fix internal references in the documentation

2013-10-08 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- dependencies: +Improve cross-references in pickle documentation ___ Python tracker ___ ___ Python-bug

[issue19196] Improve cross-references in pickle documentation

2013-10-08 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Here is a patch which fixes internal references in distutils documentation. -- assignee: docs@python components: Documentation files: refs.distutils.patch keywords: patch messages: 199244 nosy: docs@python, eric.araujo, serhiy.storchaka, tarek prior

[issue19195] Improve cross-references in C API

2013-10-08 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Here is a patch which fixes internal references in C API and extension documentation. -- assignee: docs@python components: Documentation files: refs.c-api.patch keywords: patch messages: 199243 nosy: docs@python, serhiy.storchaka priority: normal se

[issue18758] Fix internal references in the documentation

2013-10-08 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- dependencies: +Improve cross-references in fcntl documentation ___ Python tracker ___ ___ Python-bugs

[issue19194] Improve cross-references in fcntl documentation

2013-10-08 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Here is a patch which fixes internal references in the documentation of the fcntl package. -- assignee: docs@python components: Documentation files: refs.fcntl.patch keywords: patch messages: 199242 nosy: docs@python, serhiy.storchaka priority: norm

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

2013-10-08 Thread R. David Murray
R. David Murray added the comment: I believe that's the correct usage, in which case there must be a bug in the process somewhere. My guess would be that it is looking for a file in the "wrong" place when doing a cross compile, but that's just a guess. --

[issue19171] pow() improvement on longs

2013-10-08 Thread Benjamin Peterson
Benjamin Peterson added the comment: In general, we like to touch 2.7 as little as possible. I'm not sure it's worth arguing about this (admittely small) change meets the bar. -- ___ Python tracker ___

[issue19158] BoundedSemaphore.release() subject to races

2013-10-08 Thread Antoine Pitrou
Antoine Pitrou added the comment: (of course, you can go ahead and commit your version) -- ___ Python tracker ___ ___ Python-bugs-list

[issue19158] BoundedSemaphore.release() subject to races

2013-10-08 Thread Antoine Pitrou
Antoine Pitrou added the comment: > Antoine, how strongly do you feel about this? I confess I don't get > it. Copy+paste code duplication doesn't help any of readability, > correctness, or ease of future maintenance, so I guess it's some > micro-efficiency concern. Really?! ;-) Not very stron

[issue19158] BoundedSemaphore.release() subject to races

2013-10-08 Thread Tim Peters
Tim Peters added the comment: Antoine, how strongly do you feel about this? I confess I don't get it. Copy+paste code duplication doesn't help any of readability, correctness, or ease of future maintenance, so I guess it's some micro-efficiency concern. Really?! ;-) Note that the patch doe

[issue11009] urllib.splituser is not documented

2013-10-08 Thread Georg Brandl
Changes by Georg Brandl : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue19167] sqlite3 cursor.description varies across Linux (3.3.1), Win32 (3.3.2), when selecting from a view.

2013-10-08 Thread mpb
mpb added the comment: No, I have not checked to see if it is a bug in the Windows version of SQLite. How would I even test that? I just tried running the command line version of SQLite (version 3.8.0.2 2013-09-03) on Windows (XP SP2, in VirtualBox). I manually ran the same statements from th

[issue19171] pow() improvement on longs

2013-10-08 Thread Tim Peters
Tim Peters added the comment: I'm glad you pointed it out, Mark! You're right about unintended consequences, and I confess I didn't think at all about the exponent == 0 case. I didn't remind myself that 2.7 was a bugfix branch either: I read Armin's "(which can be applied on both trunk and 2

[issue15863] Fine-grained info about Python versions which support changes introduced in micro releases

2013-10-08 Thread Georg Brandl
Georg Brandl added the comment: I don't think this is necessary. -- nosy: +georg.brandl resolution: -> works for me status: open -> closed ___ Python tracker ___ ___

[issue15455] index entries not showing up in glossary

2013-10-08 Thread Georg Brandl
Changes by Georg Brandl : -- resolution: -> invalid status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue15264] PyErr_SetFromErrnoWithFilenameObject() undocumented

2013-10-08 Thread Georg Brandl
Georg Brandl added the comment: Has been documented meanwhile. -- nosy: +georg.brandl resolution: -> out of date status: open -> closed ___ Python tracker ___ __

[issue13867] misleading comment in weakrefobject.h

2013-10-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset 39e5ab118602 by Georg Brandl in branch '2.7': Closes #13867: remove untrue comment about PyWeakref_Check(). http://hg.python.org/cpython/rev/39e5ab118602 -- ___ Python tracker

[issue13867] misleading comment in weakrefobject.h

2013-10-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset 1cd2fca12abf by Georg Brandl in branch '3.3': Closes #13867: remove untrue comment about PyWeakref_Check(). http://hg.python.org/cpython/rev/1cd2fca12abf -- ___ Python tracker

[issue19171] pow() improvement on longs

2013-10-08 Thread Mark Dickinson
Mark Dickinson added the comment: No need to revert. The improvement seems like a good one; I was just a bit surprised to see it land in the maintenance branches as well as the default branch. My understanding was that minor performance improvements aren't normally candidates for inclusion i

[issue13867] misleading comment in weakrefobject.h

2013-10-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset 1800107873c0 by Georg Brandl in branch 'default': Closes #13867: remove untrue comment about PyWeakref_Check(). http://hg.python.org/cpython/rev/1800107873c0 -- nosy: +python-dev resolution: -> fixed stage: -> committed/rejected status: op

[issue18758] Fix internal references in the documentation

2013-10-08 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- dependencies: +Improve cross-references in tutorial ___ Python tracker ___ ___ Python-bugs-list maili

[issue18037] 2to3 passes through string literal which causes SyntaxError in 3.x

2013-10-08 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you Arfrever. -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker ___ _

[issue19193] Improve cross-references in tutorial

2013-10-08 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Here is a patch which fixes internal references in the tutorial. -- assignee: docs@python components: Documentation files: refs.tutorial.patch keywords: patch messages: 199228 nosy: docs@python, serhiy.storchaka priority: normal severity: normal stag

[issue18758] Fix internal references in the documentation

2013-10-08 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- dependencies: +Improve cross-references in builtins documentation., Improve cross-references in pickle documentation. ___ Python tracker ___ ___

[issue18037] 2to3 passes through string literal which causes SyntaxError in 3.x

2013-10-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset c498d1090970 by Serhiy Storchaka in branch '2.7': Issue #18037: Do not escape '\u' and '\U' in raw strings. http://hg.python.org/cpython/rev/c498d1090970 New changeset acb2dacd0d24 by Serhiy Storchaka in branch '3.3': Issue #18037: Do not escape '\u

[issue14224] packaging: path description of resources is mixed up

2013-10-08 Thread Georg Brandl
Georg Brandl added the comment: Doc/packaging has been removed. -- nosy: +georg.brandl resolution: -> out of date status: open -> closed ___ Python tracker ___ _

[issue19167] sqlite3 cursor.description varies across Linux (3.3.1), Win32 (3.3.2), when selecting from a view.

2013-10-08 Thread Kushal Das
Kushal Das added the comment: Looking at the code, it seems to be a sqlite issue. -- nosy: +kushaldas ___ Python tracker ___ ___ Pytho

[issue19158] BoundedSemaphore.release() subject to races

2013-10-08 Thread Antoine Pitrou
Antoine Pitrou added the comment: Le mardi 08 octobre 2013 à 16:58 +, Tim Peters a écrit : > Tim Peters added the comment: > > This is the "right" way to do it: the subclass wants to extend the > behavior of the base class .release(), not to replace it. Calling the > base class .release()

[issue13436] compile() doesn't work on ImportFrom with level=None

2013-10-08 Thread Georg Brandl
Changes by Georg Brandl : -- components: -Documentation nosy: -docs@python, python-dev ___ Python tracker ___ ___ Python-bugs-list m

[issue13436] compile() doesn't work on ImportFrom with level=None

2013-10-08 Thread Georg Brandl
Changes by Georg Brandl : -- Removed message: http://bugs.python.org/msg148146 ___ Python tracker ___ ___ Python-bugs-list mailing lis

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

2013-10-08 Thread Trevor Bowen
Trevor Bowen added the comment: I executed "make touch" between "configure" and "make", but the build process still created Parser/pgen and then tried to use it, which of course crashed the build, since pgen was compiled for the embedded host not the build system. :( Was that the wrong usage

[issue19154] AttributeError: 'NoneType' in http/client.py when using select when file descriptor is closed.

2013-10-08 Thread Florent Viard
Florent Viard added the comment: R. David, what you say is correct, supporting "select" that would be nice but i'm also not sure that is supposed to, and in that case, maybe select as to be fixed for that. But: a) As urllib2 through httplib provide publicly a fileno, i was excepting so. b) The

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

2013-10-08 Thread Trevor Bowen
Trevor Bowen added the comment: Thanks, David! I have no interest in running pgen on the target/host. My only interest is building python and its various modules to run on my embedded host. I do not want to develop Python on the embedded host. Unfortunately, the build process requires Pars

[issue19158] BoundedSemaphore.release() subject to races

2013-10-08 Thread Tim Peters
Tim Peters added the comment: This is the "right" way to do it: the subclass wants to extend the behavior of the base class .release(), not to replace it. Calling the base class .release() is the natural and obvious way to do that. It's also utterly normal for a lock used by multiple method

[issue19192] Move test_current_time from test_xmlrpc_net to test_xmlrpc

2013-10-08 Thread Vajrasky Kok
New submission from Vajrasky Kok: Currently, the test_current_time is idle because the server (time.xmlrpc.com) that it requires is dead (at the moment being and no end in sight). The patch moved the test from Lib/test/test_xmlrpc_net.py to Lib/test/test_xmlrpc.py and simulate the time.xmlrpc.

[issue19171] pow() improvement on longs

2013-10-08 Thread Tim Peters
Tim Peters added the comment: I'll revert the 2.7 change if people agree that's a good thing. I'm fine with it as-is. Armin pulled the idea from timing a Python public-key crypto project (see the original message in this report), where he found a 14% improvement. I don't care if the trivial

[issue19168] pprint.pprint(..., compact=True) not implemented

2013-10-08 Thread R. David Murray
R. David Murray added the comment: FYI: the development documentation tracks the tip of the default branch, so it sometimes documents features that have not yet been released even in an alpha. When we hit the first beta, *then* if the code doesn't match the docs there is a bug :) --

[issue19167] sqlite3 cursor.description varies across Linux (3.3.1), Win32 (3.3.2), when selecting from a view.

2013-10-08 Thread R. David Murray
R. David Murray added the comment: There is a decent chance this is a bug in sqlite. Have you checked? -- nosy: +r.david.murray ___ Python tracker ___ __

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

2013-10-08 Thread R. David Murray
R. David Murray added the comment: make touch avoids rebuilding "pgen and stuff", and just uses what was checked out or provided in the tarball. The release tarballs are supposed to have the time stamps in the correct order so that the compiletime/boostrapping utilities don't get built/rebuil

[issue19165] Change formatter warning to DeprecationWarning in 3.5

2013-10-08 Thread R. David Murray
New submission from R. David Murray: You two may know what this is about, but I have no clue :) A few more details would help if someone wants to try their hand at a patch. -- nosy: +r.david.murray ___ Python tracker

[issue19187] Use a set for interned strings

2013-10-08 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +r.david.murray ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue19154] AttributeError: 'NoneType' in http/client.py when using select when file descriptor is closed.

2013-10-08 Thread R. David Murray
R. David Murray added the comment: It seems to me that there is indeed an issue of some sort here, but its locus is (to me) unclear. I haven't commented before this because I wanted to read the docs...but I haven't had time yet :) One question is, is it even expected that passing a Request

[issue19154] AttributeError: 'NoneType' in http/client.py when using select when file descriptor is closed.

2013-10-08 Thread R. David Murray
R. David Murray added the comment: s/httplib/urllib/ -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue18679] include a codec to handle escaping only control characters but not any others

2013-10-08 Thread R. David Murray
R. David Murray added the comment: Well, you could writing a streaming codec. Even if it didn't get accepted for the stdlib, you could put it up on pypi. -- ___ Python tracker

[issue19191] os.path.splitext in windows , a little question

2013-10-08 Thread Tim Golden
Changes by Tim Golden : -- resolution: -> wont fix stage: -> committed/rejected ___ Python tracker ___ ___ Python-bugs-list mailing

[issue19191] os.path.splitext in windows , a little question

2013-10-08 Thread Tim Golden
Tim Golden added the comment: This was implemented after discussion in issue1115886: http://bugs.python.org/issue1115886 and python-dev: https://mail.python.org/pipermail/python-dev/2007-March/071557.html In short, it could have gone either way and it went this way. -- nosy: +tim

[issue19191] os.path.splitext in windows , a little question

2013-10-08 Thread xiaowei
New submission from xiaowei: >>> print( os.path.splitext.__doc__ ) Split the extension from a pathname. Extension is everything from the last dot to the end, ignoring leading dots. Returns "(root, ext)"; ext may be empty. >>> os.path.splitext('.txt') ('.txt', '') I think, in wind

[issue3982] support .format for bytes

2013-10-08 Thread Augie Fackler
Augie Fackler added the comment: On Tue, Oct 8, 2013 at 11:08 AM, Antoine Pitrou wrote: > > Is there any chance we could just have it work for bytes, ints, and > > floats? That'd solve the immediate need, and it'd be obviously > > correct how to have those behave. > > You mean "%s" and "%d"? >

[issue3982] support .format for bytes

2013-10-08 Thread Antoine Pitrou
Antoine Pitrou added the comment: > Is there any chance we could just have it work for bytes, ints, and > floats? That'd solve the immediate need, and it'd be obviously > correct how to have those behave. You mean "%s" and "%d"? > Punting this to 3.5 basically means we'll have to either wait f

[issue13405] Add DTrace probes

2013-10-08 Thread Marc Abramowitz
Marc Abramowitz added the comment: Nice to see this moving along as I helped Jesús a while back with some testing on OS X and FreeBSD. The buildbots in particular sound like a great asset. Let me know if I can help again with testing, though it looks like the basics are pretty well-covered by

[issue3982] support .format for bytes

2013-10-08 Thread Eric V. Smith
Eric V. Smith added the comment: Also, with the PEP 393 changes, the implementation will be much more difficult. Sharing code with str (unicode) will likely be impossible, or require much refactoring of the existing code. -- ___ Python tracker

[issue3982] support .format for bytes

2013-10-08 Thread Eric V. Smith
Eric V. Smith added the comment: If you could write up a concrete proposal, including which format specifiers would be supported, that would be helpful. Would it be extensible with something like __bformat__? There's really quite a bit of work to be done to specify how this would work. --

[issue16817] test___all__ affects other tests by doing too much importing

2013-10-08 Thread Eli Bendersky
Eli Bendersky added the comment: This is superceded by: http://bugs.python.org/issue18906 -- superseder: -> Create a way to always run tests in subprocesses within regrtest ___ Python tracker

[issue14332] Better explain "junk" concept in difflib doc

2013-10-08 Thread Eli Bendersky
Eli Bendersky added the comment: Tim, any suggestions? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https

[issue9398] Unify sys.settrace and sys.setprofile tests

2013-10-08 Thread Eli Bendersky
Changes by Eli Bendersky : -- nosy: -eli.bendersky ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue8957] strptime(.., '%c') fails to parse output of strftime('%c', ..) in some locales

2013-10-08 Thread Eli Bendersky
Changes by Eli Bendersky : -- nosy: -eli.bendersky ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue9317] Incorrect coverage file from trace test_pickle.py

2013-10-08 Thread Eli Bendersky
Changes by Eli Bendersky : -- nosy: -eli.bendersky ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

  1   2   >