[Python-Dev] Results of the python 2.x and 3.x use survey, 2014 edition

2015-01-29 Thread Bruno Cauet
Hi! Finally, here are the results: http://blog.frite-camembert.net/python-survey-2014.html Here is the auto-generated Google Forms recap: https://docs.google.com/forms/d/1DqxkNi4GvyTCu54usSdE1DjW29zw1tc52iMeH3z4heg/viewanalytics (more elegant than my matplotlib graphs - I'd have no future as a

Re: [Python-Dev] Why co_names? Wouldn't be simpler to just use co_consts?

2015-01-29 Thread Nick Coghlan
On 29 January 2015 at 04:53, Andrea Griffini agr...@tin.it wrote: The names stored in op_names are totally unrelated as they can be attribute names, module names, global names; you basically don't know much about them unless you also inspect the actual bytecode using them (and the same name

Re: [Python-Dev] Newly Built Python3 Binary Throws Segfault

2015-01-29 Thread Cyd Haselton
Managed to get this out of logcat: F(11914) Fatal signal 11 (SIGSEGV) at 0x (code=1), thread 11914 (python) (libc) [ 01-29 19:30:55.855 23373:23373 F/libc ] Fatal signal 11 (SIGSEGV) at 0x (code=1), thread 23373 (python) Less detail than strace but it seems to be that python

[Python-Dev] Pronouncing on PEP 475 - last call

2015-01-29 Thread Antoine Pitrou
Hello, As BDFL-delegate, I'd like to pronounce soon on PEP 475 - Retry system calls failing with EINTR. I've just pushed some small rephrasings, which should appear soon (at https://www.python.org/dev/peps/pep-0475/). There is a working implementation by Charles-François at

Re: [Python-Dev] Newly Built Python3 Binary Throws Segfault

2015-01-29 Thread Ryan
Could you try the steps at http://stackoverflow.com/a/11369475/2097780? They allow you to get a better idea of where libc is crashing. Cyd Haselton chasel...@gmail.com wrote: Managed to get this out of logcat: F(11914) Fatal signal 11 (SIGSEGV) at 0x (code=1), thread 11914 (python)

Re: [Python-Dev] Newly Built Python3 Binary Throws Segfault

2015-01-29 Thread Cyd Haselton
Found a patch for at bugs.python.org addressing a segfault issue for android but even afternapplying it i'm still getting a segfault. I ran a strace with the verbose option and am attaching it to this update. If not helpful, I'll see if I can hook up the debugging bridge to the tablet but as