[issue13461] Error on test_issue_1395_5 with Python 2.7 and VS2010

2013-08-20 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you for the report Sébastien. Thank you for the patch Yogesh. -- resolution: -> fixed stage: needs patch -> committed/rejected status: open -> closed versions: -Python 3.2 ___ Python tracker

[issue13461] Error on test_issue_1395_5 with Python 2.7 and VS2010

2013-08-20 Thread Roundup Robot
Roundup Robot added the comment: New changeset 826233404be8 by Serhiy Storchaka in branch '3.3': Issue #13461: Fix a crash in the TextIOWrapper.tell method on 64-bit platforms. http://hg.python.org/cpython/rev/826233404be8 New changeset 6c9d49b8e3ec by Serhiy Storchaka in branch 'default': Issue

[issue13461] Error on test_issue_1395_5 with Python 2.7 and VS2010

2013-08-19 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13461] Error on test_issue_1395_5 with Python 2.7 and VS2010

2013-05-12 Thread Yogesh Chaudhari
Changes by Yogesh Chaudhari : Added file: http://bugs.python.org/file30239/issue13461-3x.patch ___ Python tracker ___ ___ Python-bugs-list mai

[issue13461] Error on test_issue_1395_5 with Python 2.7 and VS2010

2013-05-12 Thread Yogesh Chaudhari
Changes by Yogesh Chaudhari : -- hgrepos: -191 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyt

[issue13461] Error on test_issue_1395_5 with Python 2.7 and VS2010

2013-05-12 Thread Yogesh Chaudhari
Yogesh Chaudhari added the comment: This patch should work for 2.7 branch -- hgrepos: +191 keywords: +patch nosy: +Yogesh.Chaudhari Added file: http://bugs.python.org/file30238/issue13461-27.patch ___ Python tracker

[issue13461] Error on test_issue_1395_5 with Python 2.7 and VS2010

2013-02-14 Thread Antoine Pitrou
Antoine Pitrou added the comment: Ageed, it's probably easy enough. -- stage: -> needs patch versions: +Python 3.4 ___ Python tracker ___ ___

[issue13461] Error on test_issue_1395_5 with Python 2.7 and VS2010

2013-02-14 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Can we fix this easy issue before 2.7.4 release? -- keywords: +easy nosy: +serhiy.storchaka ___ Python tracker ___ ___

[issue13461] Error on test_issue_1395_5 with Python 2.7 and VS2010

2012-08-20 Thread Patrick Welche
Changes by Patrick Welche : -- nosy: +prlw1 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue13461] Error on test_issue_1395_5 with Python 2.7 and VS2010

2011-11-25 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: I've identified a few other cases where a '#' format is passed a numeric literal: Python/codecs.c:514: return Py_BuildValue("(u#n)", &end, 0, end); Modules/_io/textio.c:2323: DECODER_DECODE(input, 1, n); -- nosy: +amaury.forgeotdarc ___

[issue13461] Error on test_issue_1395_5 with Python 2.7 and VS2010

2011-11-25 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- priority: normal -> high type: -> crash ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue13461] Error on test_issue_1395_5 with Python 2.7 and VS2010

2011-11-25 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- versions: +Python 3.2, Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13461] Error on test_issue_1395_5 with Python 2.7 and VS2010

2011-11-25 Thread Sébastien Sablé
Sébastien Sablé added the comment: Thanks Antoine! It solved the issue. I will check soon with Python trunk to see if the same thing applies. -- ___ Python tracker ___

[issue13461] Error on test_issue_1395_5 with Python 2.7 and VS2010

2011-11-24 Thread Antoine Pitrou
Antoine Pitrou added the comment: What if you replace: PyObject *decoded = PyObject_CallMethod( self->decoder, "decode", "s#", input, 1); with: PyObject *decoded = PyObject_CallMethod( self->decoder, "decode", "s#", input, (Py_ssize_t) 1); -- nosy: +brian.curt

[issue13461] Error on test_issue_1395_5 with Python 2.7 and VS2010

2011-11-23 Thread Sébastien Sablé
Sébastien Sablé added the comment: The problem is in CTextIOWrapperTest.test_issue1395_5 Here is the backtrace: msvcr100d.dll!memset() Line 145Asm > msvcr100d.dll!_heap_alloc_dbg_impl(unsigned __int64 nSize, int > nBlockUse, const char * szFileName, int nLine, int * errn

[issue13461] Error on test_issue_1395_5 with Python 2.7 and VS2010

2011-11-23 Thread Sébastien Sablé
New submission from Sébastien Sablé : I am trying to get Python working when compiled with Visual Studio 2010 (cf issue 13210). When running the tests with the python 2.7 branch compiled with VS2010, the "test_issue_1395_5" in test_io.py will cause Python to eat the whole memory within a few