[issue16529] Compiler error when trying to compile ceval.c on OpenSUSE 11.3

2014-06-13 Thread Marc-Andre Lemburg
Marc-Andre Lemburg added the comment: FWIW: This still happens with the Python 3.4.1 release version. Here's a similar error report for Fedora: https://bugzilla.redhat.com/show_bug.cgi?id=622060 They patched the compiler, so I guess I'll have to find a more recent gcc for the build box. -

[issue21686] IDLE - Test hyperparser

2014-06-13 Thread Tal Einat
Tal Einat added the comment: Which lines are not hit? -- nosy: +taleinat ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue21694] IDLE - Test ParenMatch

2014-06-13 Thread Tal Einat
Tal Einat added the comment: I can take a look at get_surrounding_brackets() if you like, since I've worked with that code before. -- nosy: +taleinat ___ Python tracker ___

[issue21725] RFC 6531 (SMTPUTF8) support in smtpd

2014-06-13 Thread Milan Oberkirch
Milan Oberkirch added the comment: Thanks a lot for your feedback! > Your modifications to the handling of max_command_size are technically buggy > (and clearly there's no test for it): when we aren't in extended smtp mode, > the limit should be the hardcoded value, as in the original code. M

[issue21694] IDLE - Test ParenMatch

2014-06-13 Thread Terry J. Reedy
Terry J. Reedy added the comment: Please do. #21686 is for hyperparser test, which is the next one I want to look at. -- ___ Python tracker ___ _

[issue21696] Idle: test configuration files

2014-06-13 Thread Tal Einat
Tal Einat added the comment: I've done a thorough review of the tests. The overall structure and tests are fine, but I found quite a few issues that should be addressed. Saimadhav, considering these are some of the first tests you've written, please know that I am impressed! I have many commen

[issue21686] IDLE - Test hyperparser

2014-06-13 Thread Terry J. Reedy
Terry J. Reedy added the comment: There are 7 scattered conditionals which only evaluate as one of True or False during tests and 5 lines not hit at all as a result. I am emailing instructions to install and use coverage package. -- ___ Python track

[issue19776] Provide expanduser() on Path objects

2014-06-13 Thread Antoine Pitrou
Antoine Pitrou added the comment: Claudiu, sorry for the delay. I'm going to take a look soon! -- ___ Python tracker ___ ___ Python-bu

[issue21724] resetwarnings doesn't reset warnings registry

2014-06-13 Thread Antoine Pitrou
Antoine Pitrou added the comment: Related indeed, though not exactly the same issue. What I'd like is to reset (i.e. clear) the registry even when keeping the default warning scheme. -- ___ Python tracker

[issue21751] Expand zipimport to support bzip2 and lzma

2014-06-13 Thread Brett Cannon
Brett Cannon added the comment: Zipimporter doesn't use zipfile (the former is written in C), so it unfortunately doesn't fall through for support. -- ___ Python tracker ___ ___

[issue10740] sqlite3 module breaks transactions and potentially corrupts data

2014-06-13 Thread Torsten Landschoff
Torsten Landschoff added the comment: Hi all, let me warn you first: I have put a lot a effort in writing the patch back then. I moved on since as I don't even know when the improvement will make any difference for me. As so often, trying to contribute to an open source project turned out to

[issue21744] itertools.islice() goes over all the pre-initial elements even if the iterable can seek

2014-06-13 Thread Josh Rosenberg
Josh Rosenberg added the comment: I would think that allowing the special case optimization would be a good idea. As is, if you want to take slices of buffers without making copies, you can use memoryview and get O(1) views of a slice of the memory. But there's nothing built-in that's even rem

[issue17941] namedtuple should support fully qualified name for more portable pickling

2014-06-13 Thread Josh Rosenberg
Josh Rosenberg added the comment: I was already thinking of the same solution Christian.Tismer proposed before I reached his post. namedtuples seem cleaner if they naturally act as singletons, so (potentially whether or not pickling is involved) declaring a namedtuple with the same name and fi

[issue21744] itertools.islice() goes over all the pre-initial elements even if the iterable can seek

2014-06-13 Thread Josh Rosenberg
Josh Rosenberg added the comment: I will admit, on further consideration, a dedicated sequenceview might work more nicely. islice's interface is limited by its generality; since it doesn't assume a length, you can't use a negative value for end. Does anyone think a general sequenceview class w

[issue17941] namedtuple should support fully qualified name for more portable pickling

2014-06-13 Thread Raymond Hettinger
Raymond Hettinger added the comment: > Just slipped under the radar? Nope, I'll get to it before long. -- ___ Python tracker ___ ___

[issue21744] itertools.islice() goes over all the pre-initial elements even if the iterable can seek

2014-06-13 Thread Raymond Hettinger
Raymond Hettinger added the comment: > I'll leave it to Raymond to decide if it is worth > making a special-case optimization :) Special cases aren't special enough ... :-) The itertools are specifically designed to work with general iterators, not just sequences. > Does anyone think a gene

[issue19362] Documentation for len() fails to mention that it works on sets

2014-06-13 Thread Raymond Hettinger
Raymond Hettinger added the comment: Thanks Terry. -- assignee: rhettinger -> terry.reedy ___ Python tracker ___ ___ Python-bugs-list

[issue19495] Enhancement for timeit: measure time to run blocks of code using 'with'

2014-06-13 Thread Raymond Hettinger
Raymond Hettinger added the comment: This idea is a bit at odds with the design of the rest of the time-it module which seeks to: * run small snippets of code in volume rather than "trying to find bottlenecks in large programs without interfering with their operation". The latter task is mor

[issue21751] Expand zipimport to support bzip2 and lzma

2014-06-13 Thread Donald Stufft
Donald Stufft added the comment: Right, but it could still have support for those things implemented yea? -- ___ Python tracker ___ __

[issue21751] Expand zipimport to support bzip2 and lzma

2014-06-13 Thread Brett Cannon
Brett Cannon added the comment: On Jun 13, 2014 7:39 PM, "Donald Stufft" wrote: > > > Donald Stufft added the comment: > > Right, but it could still have support for those things implemented yea? Yes, it's just zipimport has a history of being difficult to maintain. > > -- > >

[issue21694] IDLE - Test ParenMatch

2014-06-13 Thread Saimadhav Heblikar
Saimadhav Heblikar added the comment: Patch as per tracker and Rietveld comments for 2.7 Terry - I replaced the DummyFrame with a Mock, so that we can have consistent code across 2.7 and 3.4. I completed a docstring.(See Rietveld) -- Added file: http://bugs.python.org/file35623/test-par

[issue21463] RuntimeError when URLopener.ftpcache is full

2014-06-13 Thread Skyler Leigh Amador
Skyler Leigh Amador added the comment: You're welcome, happy to help :) On Mon, Jun 9, 2014 at 8:31 AM, Erik Bray wrote: > > Erik Bray added the comment: > > Thanks Skyler for finishing the job. I got busy/distracted. > > -- > > ___ > Python tracker

<    1   2