New submission from Dave Malcolm:
It appears that gcc's -Wformat warning changed from being on by default in gcc
4.7 and earlier to being off by default in gcc 4.8, needing to be enabled with
-Wformat (or -Wall), if I'm reading:
http://gcc.gnu.org/viewcvs/gcc?view=revision&r
Dave Chambers added the comment:
Enough with the bikeshedding... it's been 10 months... fix the bug.
--
___
Python tracker
<http://bugs.python.org/is
Dave Malcolm added the comment:
I didn't know that gdb supported embedding Python 3. Is this a set of patches
you're applying downstream, or an official gdb feature?
If so, it means everyone coding to the gdb API needs to somehow make their
FOO-gdb.py files be Python 3-
Dave Malcolm added the comment:
Thanks. Does upstream gdb have a plan dcoumented somewhere for how to deal
with all of the FOO-gdb.py files. Are they expected to be coded to the common
Python 2/3 subset?
--
___
Python tracker
<h
Dave Malcolm added the comment:
On Sat, 2013-04-20 at 21:25 +, Ned Deily wrote:
> Ned Deily added the comment:
>
> Dave, any reason this shouldn't go into the imminent 2.7.5 and 3.3.2 releases?
I was trying to think of one; the only reason I can think of is if there
are any
Dave Malcolm added the comment:
BTW, is that GCC format checking code available anywhere?
Am I right in thinking that it was an out-of-tree patch to GCC, from the
pre-plugin days?
[My cpychecker code adds some similar checking, but it doesn't use this
attr
Dave Malcolm added the comment:
On Wed, 2013-04-24 at 10:48 +, Alex Leach wrote:
> Alex Leach added the comment:
>
> I don't think I can tell you anything you don't know already, but ...
>
> On Tue, 23 Apr 2013 19:38:18 +0100, Dave Malcolm
> wrote:
&g
Dave Malcolm added the comment:
Is this an optimized or a debug build? (aka --with-pydebug)
What are the optimization flags passed to the C compiler?
--
nosy: +dmalcolm
___
Python tracker
<http://bugs.python.org/issue17
Dave Malcolm added the comment:
Thanks. I can't see from that output what's going wrong.
Can you apply the following patch, which (I hope) will print more detailed info
where the failure happens.
--
keywords: +patch
Added file: http://bugs.python.org/file30005
Dave Malcolm added the comment:
Looking at test_gdb.out, the issue is that the threads waiting for the GIL have
e.g. this at the top of their backtrace:
Thread 2 (Thread 0x3fffb14af200 (LWP 37119)):
#0 0x008075181ea8 in __pthread_cond_timedwait (cond=0x103ea140 ,
mutex=0x103ea170
Dave Malcolm added the comment:
Can you try this candidate fix?
--
Added file: http://bugs.python.org/file30007/possible-fix.patch
___
Python tracker
<http://bugs.python.org/issue17
Changes by Dave Malcolm :
--
resolution: -> fixed
stage: commit review -> committed/rejected
status: open -> closed
___
Python tracker
<http://bugs.python.or
Dave Abrahams added the comment:
I have no idea. I don't work with low-level python much anymore. Sorry
Sent from my moss-covered three-handled family gradunza
On May 17, 2013, at 8:54 PM, Ethan Furman wrote:
>
> Ethan Furman added the comment:
>
> David, is this still
New submission from Dave Tian:
Hi there,
Recent urlopen with timeout did not work. Below is the back trace. After
digging into the Python lib, the root cause is found - within the socket.py,
self._sock.recv(), under a 'while True' loop, tried to retrieve sth from the
under-layer
Dave Tian added the comment:
Hi David,
Thanks for your quick response. I have tried Python 3.4.2 using
urllib.request.urlopen() - still not working. Below is the backtrace. I am not
sure if this is a bug of PySSL_SSLread, which returns nothing yet without
timeout. If you want me to dig into
Dave Tian added the comment:
Alright. The issued URL of my case is here: www.5giay.vn
Nor am I a ssl dev...Here is what happens after further debugging:
PySSL_SSLread() returns 1/2 bytes without any error/timeout per call.
readline() in socket.py keeps looping. Occasionally, it may break out
New submission from Dave Notman:
# Python 3.3.1 (default, Sep 25 2013, 19:30:50)
# Linux 3.8.0-35-generic #50-Ubuntu SMP Tue Dec 3 01:25:33 UTC 2013 i686 i686
i686 GNU/Linux
import re
splitter = re.compile( r'(\s*[+/&;,]\s*)|(\s+and\s+)' )
ll = splitter.split( 'Dave
New submission from Dave Hein:
With 3.4.3 from an OS X terminal prompt, if I just enter the interactive Python
REPL environment (by just entering the command "python" from the command line)
and then exit (via "exit()" or Ctrl-D), then stdout appears to be broken ... I
see
Dave Hein added the comment:
Thanks. I installed py34-readline and rebuilt my virtualenv; all is well now.
I put in a MacPorts ticket when their bugtracker gets back online.
--
___
Python tracker
<http://bugs.python.org/issue24
Dave Jones added the comment:
>From the bash man-page: "... If one of these characters appears, then the word
>is regarded as a pattern, and replaced with an *alphabetically sorted* list of
>filenames matching the pattern".
I would agree that glob.glob shouldn't sort i
New submission from Dave Jones:
As suggested in issue 21748, this is a minor documentation change to make
explicitly clear that glob.glob returns unsorted results (on the basis that the
existing specification references shell behaviour which is always sorted).
--
assignee: docs@python
Dave Jones added the comment:
As suggested, doc patch attached to new issue 25615.
--
___
Python tracker
<http://bugs.python.org/issue21748>
___
___
Python-bug
Dave Jones added the comment:
Sounds good; the patch seems to apply cleanly to checkouts of 2.7, 3.4, and 3.5
so I'm assuming I don't need to do anything else?
--
___
Python tracker
<http://bugs.python.o
Dave Jones added the comment:
Ah, sorry about that - force of habit. I did wonder if it was preferable to
have a nicely wrapped patch, or to have a clean diff but obviously figured
wrong! I'll know for future :)
--
___
Python tracker
New submission from Dave Hibbitts:
__len__() always returns an int which on windows machines is tied to the size
of a c long and is always 32 bits even if it's compiled for 64 bit. len()
however returns an int for values less than sys.maxint and a long above that.
Returning an int in __
New submission from Dave Sawyer:
The sqlite3.connect method has 6 parameters. 5 of them are documented. See
below and search for "check_same_thread". Patch adds documentation for this
parameter.
sqlite3.connect(database[, timeout, detect_types, isolation_level,
check_same_threa
Changes by Dave Sawyer :
--
title: sqlite3 open parameter "check_same_thread" not documented -> sqlite3
connect parameter "check_same_thread" not documented
___
Python tracker
<http://
Dave Sawyer added the comment:
I'd be interested in taking up the zip portion at Pycon 2015 this year. I
recently had need to delete file(s) from a zipfile.
To do it today with the existing API requires you to unpack the zip and repack
it. The unpack is slow and you need enough free
Dave Sawyer added the comment:
The zipfile way to delete or rename would be to just change the index. It
really doesn't want to be re-written as it is designed to span disks. Many old
versions of files can be scattered within the zip. In addition self-extracting
zip files will have execu
Dave Sawyer added the comment:
I can add some more tests to bring up the coverage, but wanted to get reviewer
opinion on the direction of this before doing more work.
--
hgrepos: +305
Added file: http://bugs.python.org/file39063/zipfile_filter.patch
Dave Sawyer added the comment:
Maybe it takes a little longer than a week. I have a final signed agreement
from Ewa
(https://secure.echosign.com/public/viewAgreement?aid=X88L4EVP5IXC289&eid=X88M6DGQ93J5K38&;)
signed on
04/17/2014 6:48 PM
Wow, exactly one
Dave T added the comment:
Its on a windows 10
It doesn't come with the run application but the debug
--
nosy: +Dave T
versions: +Python 2.7 -Python 3.5
Added file: http://bugs.python.org/file45298/Py 2.7.JPG
___
Python tracker
New submission from "Dragon" Dave McKee :
Problem:
Using the following code gives different behaviour on versions 2.6.4 and
3.0.1: nothing will be drawn under 3.0.1, but turtle.update() will force
the line to be drawn under 2.6.4. 2.6.4's behaviour is compatible with
th
601 - 633 of 633 matches
Mail list logo