[Python-Dev] Do you consider Python a 4GL? Why (not)?

2013-06-04 Thread Carlos Nepomuceno
Do you consider Python a 4GL? Why (not)? ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe:

Re: [Python-Dev] New FreeBSD 10.0-CURRENT buildbot

2013-06-02 Thread Carlos Nepomuceno
Date: Sun, 2 Jun 2013 15:12:43 +1000 From: koobs.free...@gmail.com To: python-dev@python.org Subject: [Python-Dev] New FreeBSD 10.0-CURRENT buildbot [...] koobs-freebsd10-amd64 (clang is default here) Does CPython code compiled with clang runs faster

Re: [Python-Dev] performance testing recommendations in devguide

2013-05-29 Thread Carlos Nepomuceno
Date: Wed, 29 May 2013 12:00:44 -0600 From: ericsnowcurren...@gmail.com To: python-dev@python.org Subject: [Python-Dev] performance testing recommendations in devguide The devguide doesn't have anything on performance testing that I could find. We do

Re: [Python-Dev] PEP 442 delegate

2013-05-22 Thread Carlos Nepomuceno
From: krist...@ccpgames.com To: g...@krypto.org; solip...@pitrou.net Date: Wed, 22 May 2013 19:49:31 + CC: python-dev@python.org Subject: Re: [Python-Dev] PEP 442 delegate Stackless python, already with their own special handling of GC

[Python-Dev] _PyString_InsertThousandsGrouping()

2013-05-22 Thread Carlos Nepomuceno
Hi guys! Can someone explain to me where in the CPython 2.7.5 source code is _PyString_InsertThousandsGrouping() implemented? I've found the following declaration in 'Objects/stringobject.c' but it just defines _Py_InsertThousandsGrouping() as _PyString_InsertThousandsGrouping(): #define

Re: [Python-Dev] _PyString_InsertThousandsGrouping()

2013-05-22 Thread Carlos Nepomuceno
From: eli...@gmail.com [...] I've found the following declaration in 'Objects/stringobject.c' but it just defines _Py_InsertThousandsGrouping() as _PyString_InsertThousandsGrouping(): #define _Py_InsertThousandsGrouping

Re: [Python-Dev] [RELEASED] Python 2.7.5

2013-05-15 Thread Carlos Nepomuceno
Just filed 17992! http://bugs.python.org/issue17992 Date: Wed, 15 May 2013 23:51:00 -0500 Subject: Re: [Python-Dev] [RELEASED] Python 2.7.5 From: benja...@python.org To: carlosnepomuc...@outlook.com CC: python-dev@python.org 2013/5/15 Carlos

[Python-Dev] First post

2013-05-14 Thread Carlos Nepomuceno
Hi guys! This is my first post on this list. I'd like have your opinion on how to safely implement WSGI on a production server. My benchmarks show no performance differences between our PHP and Python environments. I'm using mod_wsgi v3.4 with Apache 2.4. Is that ok or can it get faster?