[issue26571] turtle regression in 3.5

2016-03-16 Thread Ethan Furman

Changes by Ethan Furman :


--
nosy: +ethan.furman

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26571] turtle regression in 3.5

2016-03-16 Thread Serhiy Storchaka

Changes by Serhiy Storchaka :


--
assignee:  -> serhiy.storchaka
nosy: +serhiy.storchaka

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26564] Malloc debug hooks: display memory block traceback on error

2016-03-16 Thread Martin Panter

Martin Panter added the comment:

FYI Victor if you haven’t already noticed, the Windows buildbots are choking on 
a variable-length array:

..\Python\traceback.c(513): error C2057: expected constant expression 
[D:\buildarea\3.x.bolen-windows10\build\PCbuild\pythoncore.vcxproj]
..\Python\traceback.c(513): error C2466: cannot allocate an array of constant 
size 0 [D:\buildarea\3.x.bolen-windows10\build\PCbuild\pythoncore.vcxproj]
..\Python\traceback.c(513): error C2133: 'buffer': unknown size 
[D:\buildarea\3.x.bolen-windows10\build\PCbuild\pythoncore.vcxproj]

--
nosy: +martin.panter

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26499] http.client.IncompleteRead from HTTPResponse read after part reading file

2016-03-16 Thread Roundup Robot

Roundup Robot added the comment:

New changeset e95e9701b472 by Martin Panter in branch '3.5':
Issue #26499: Fixes to HTTPResponse.readline() and read1(), by Silent Ghost
https://hg.python.org/cpython/rev/e95e9701b472

New changeset 74b3523d6256 by Martin Panter in branch 'default':
Issue #26499: Merge HTTPResponse fix from 3.5
https://hg.python.org/cpython/rev/74b3523d6256

--
nosy: +python-dev

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue19914] help([object]) returns "Not enough memory." on standard Python types, object and object functions

2016-03-16 Thread Mark Lawrence

Changes by Mark Lawrence :


--
nosy:  -BreamoreBoy

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26560] Error in assertion in wsgiref.handlers.BaseHandler.start_response

2016-03-16 Thread Berker Peksag

Berker Peksag added the comment:

Thanks for the report.

Can you give us a bit more information about the issue? Did you get a 
traceback? Or just noticed it while reading the source code?

If you want to write a patch, please read the devguide.

--
nosy: +berker.peksag
priority: normal -> low
stage:  -> needs patch
versions: +Python 3.5

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26499] http.client.IncompleteRead from HTTPResponse read after part reading file

2016-03-16 Thread Martin Panter

Changes by Martin Panter :


--
resolution:  -> fixed
stage: commit review -> resolved
status: open -> closed

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue21042] ctypes.util.find_library() should return full pathname instead of filename in linux

2016-03-16 Thread Roundup Robot

Roundup Robot added the comment:

New changeset 811ec2860dc4 by Martin Panter in branch 'default':
Issue #21042: Revert Linux find_library() to return just filename
https://hg.python.org/cpython/rev/811ec2860dc4

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26564] Malloc debug hooks: display memory block traceback on error

2016-03-16 Thread Roundup Robot

Roundup Robot added the comment:

New changeset 5f2284ecf9c6 by Victor Stinner in branch 'default':
Fix compilation error of traceback.c on Windows
https://hg.python.org/cpython/rev/5f2284ecf9c6

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26564] Malloc debug hooks: display memory block traceback on error

2016-03-16 Thread STINNER Victor

STINNER Victor added the comment:

Martin Panter added the comment:
> FYI Victor if you haven’t already noticed, the Windows buildbots are choking 
> on a variable-length array:

Thank you, sometimes I miss buildbot failures.

I pushed changes which had 2 tests, so I knew that all buildbots were
red, and I planned to come back the day after to check.

For Windows, it's a pity, the expression is constant. Stupid compiler
:-) VS2015 doesn't support C99 yet? Anyway, it's trivial to fix the
code. I just fixed it.

I will check again if buildbots are now happy with the current code ;-)

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue24959] unittest swallows part of stack trace when raising AssertionError in a TestCase

2016-03-16 Thread Chris Jerdonek

Chris Jerdonek added the comment:

This is simply a reduced test case to illustrate the issue more clearly. There 
was more to it in how I was using it in practice.

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue23735] Readline not adjusting width after resize with 6.3

2016-03-16 Thread Christian Zommerfelds

Changes by Christian Zommerfelds :


--
nosy: +Christian Zommerfelds

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue23735] Readline not adjusting width after resize with 6.3

2016-03-16 Thread Christian Zommerfelds

Christian Zommerfelds added the comment:

This bug makes the REPL totally unusable because larger lines start to wrap in 
a very strange and unreadable way.
What has to be done in order for this to get accepted? It looks like there is 
no better way to define the signal handler and that the user has to know to 
properly call the old signal handler if it needs to.

--

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26564] Malloc debug hooks: display memory block traceback on error

2016-03-16 Thread STINNER Victor

STINNER Victor added the comment:

Ok, buildbots are green again. I close the issue.

--
resolution:  -> fixed
status: open -> closed

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26563] PyMem_Malloc(): check that the GIL is hold in debug hooks

2016-03-16 Thread Roundup Robot

Roundup Robot added the comment:

New changeset 58644086c195 by Victor Stinner in branch 'default':
Fail if PyMem_Malloc() is called without holding the GIL
https://hg.python.org/cpython/rev/58644086c195

--
nosy: +python-dev

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue26563] PyMem_Malloc(): check that the GIL is hold in debug hooks

2016-03-16 Thread STINNER Victor

STINNER Victor added the comment:

I pushed the patch (I added an unit test).

If too many users complain, we can revert the change since it's now a small 
change.

--
resolution:  -> fixed
status: open -> closed

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com