[issue14412] Sqlite Integer Fields

2012-04-12 Thread Benjamin Peterson
Benjamin Peterson added the comment: Great! -- resolution: -> out of date status: open -> closed ___ Python tracker ___ ___ Python-b

[issue14412] Sqlite Integer Fields

2012-04-12 Thread Mendez
Mendez added the comment: I've tested the released 2.7.3 and this works fine so there must just have been some oddity with the packaging of sqlite in rc2. -- ___ Python tracker ___

[issue14412] Sqlite Integer Fields

2012-04-09 Thread Benjamin Peterson
Benjamin Peterson added the comment: Given the lack of progress here, I will be releasing 2.7.3. -- ___ Python tracker ___ ___ Python

[issue14412] Sqlite Integer Fields

2012-04-06 Thread Benjamin Peterson
Benjamin Peterson added the comment: What steps can we take to further debug/address this? -- ___ Python tracker ___ ___ Python-bugs-

[issue14412] Sqlite Integer Fields

2012-03-27 Thread Martin v . Löwis
Martin v. Löwis added the comment: > Is that with the 32-bit Python on a 64-bit copy of Windows? No, it was the 64-bit version. -- ___ Python tracker ___ __

[issue14412] Sqlite Integer Fields

2012-03-27 Thread Mendez
Mendez added the comment: Is that with the 32-bit Python on a 64-bit copy of Windows? I've tried it on a different machine, again running Windows 7 64-bit and I'm getting the same incorrect results. -- ___ Python tracker

[issue14412] Sqlite Integer Fields

2012-03-27 Thread Martin v . Löwis
Martin v. Löwis added the comment: I can't reproduce that. Your test script, with the released 2.7.3rc2, on Windows 7, gives 12349 for me, as it should. -- ___ Python tracker _

[issue14412] Sqlite Integer Fields

2012-03-27 Thread Mendez
Mendez added the comment: I've done some more checking 2.7.3rc1 32-bit works as expected. If I replace sqlite3.dll _sqlite3.lib in rc2 32-bit with those from rc1 then that fixes the problem. -- ___ Python tracker

[issue14412] Sqlite Integer Fields

2012-03-26 Thread Mendez
Mendez added the comment: I've tried the 32-bit version of 3.2.3rc2 and that works as expected. There don't seem to be Windows builds of 2.6 and 3.1 available so I haven't been able to try those. -- ___ Python tracker

[issue14412] Sqlite Integer Fields

2012-03-26 Thread Antoine Pitrou
Antoine Pitrou added the comment: Can't reproduce on a 2.7 debug build under Windows either. Some data points: >>> hex(530428456761032704) '0x75c75df' >>> hex(12349) '0x75c75df' Looking at #8033, it seems unlikely to have caused this problem. Perhaps we shipped the 2.7.3 rc with a

[issue14412] Sqlite Integer Fields

2012-03-26 Thread Antoine Pitrou
Antoine Pitrou added the comment: Can't reproduce under Linux. Can someone test under Windows? -- components: +Library (Lib) nosy: +benjamin.peterson, brian.curtin, pitrou, tim.golden priority: normal -> release blocker ___ Python tracker

[issue14412] Sqlite Integer Fields

2012-03-26 Thread Mendez
New submission from Mendez : There appears to be a problem with the handling of integer fields in SQLite in the 32-bit release candidate for 2.7.3. I'm running the 64-bit version of Windows 7. I've attached a script which reproduces the issue. The following are the results I get with differen