EuroPython 2019: Early-bird ticket sales

2019-05-08 Thread M.-A. Lemburg
As in the last few years, we will again have early-bird ticket sales for the conference. We plan to open early bird ticket sales on Monday, May 13th at 12:00 CEST. This year, we will have 200 early-bird tickets available when we open up ticket sales. They offer

Re: Building a statically linked Python, and pip

2019-05-08 Thread Thomas Jollans
On 08/05/2019 03:18, Simon Michnowicz via Python-list wrote: > Dear Group, > I need to build a statically linked Python that has pip. What a curious thing to need. > I built a version following the instructions at > https://wiki.python.org/moin/BuildStatically > but pip was not present in the bin

Re: Conway's game of Life, just because.

2019-05-08 Thread Paul Moore
On Wed, 8 May 2019 at 03:39, Richard Damon wrote: > My experience is that the wrap around is common, as otherwise the hard > edge causes a discontinuity in the rules at the edge, so any pattern > that reaches the edge no longer has a valid result. The torus effect > still perturbs the result, but

Re: CAD Application

2019-05-08 Thread Britto .
What about PythonOCC, Pandas3D, FreeCAD etc.? Regards Britto On Tue, 7 May 2019 at 00:18, Christian Gollwitzer wrote: > Am 06.05.19 um 07:23 schrieb Britto .: > > What are the frameworks available for developing a CAD application with > > Python? > > For 3D visualization VTK is your best bet.

how is the readline set_completer function suppose to work

2019-05-08 Thread sinbad . sinbad
Below i was expecting the test() function to be called, but it doesn't. Am i doing it wrong? By the way i'm running version 2.7.10 on a mac. $python >>> import readline >>> def test(): ... print("test") ... >>> test() test >>> print(help(readline)) None >>> readline.set_completer(test) >>> ra

Re: Conway's game of Life, just because.

2019-05-08 Thread Richard Damon
On 5/8/19 4:26 AM, Paul Moore wrote: > On Wed, 8 May 2019 at 03:39, Richard Damon wrote: >> My experience is that the wrap around is common, as otherwise the hard >> edge causes a discontinuity in the rules at the edge, so any pattern >> that reaches the edge no longer has a valid result. The toru

Re: Conway's game of Life, just because.

2019-05-08 Thread Paul Moore
Golly supports both bounded and unbounded universes. I don't know how it does it, and (obviously) it will hit limits *somewhere*, but I consider support of unbounded universes to mean that any failure modes will not be attributable to limits on the value of co-ordina

Re: Building a statically linked Python, and pip

2019-05-08 Thread Skip Montanaro
> > I need to build a statically linked Python that has pip. > > What a curious thing to need. In the old days that was the only way to build Python. I guess we were just more curious back then. :-) To the OP, as Thomas pointed out, you're going to have to identify all the extension modules you n

Re: how is the readline set_completer function suppose to work

2019-05-08 Thread Peter Otten
sinbad.sin...@gmail.com wrote: > Below i was expecting the test() function to be called, but it doesn't. Am > i doing it wrong? By the way i'm running version 2.7.10 on a mac. > > $python > import readline def test(): > ... print("test") > ... test() > test print(help(readl

Re: Conway's game of Life, just because.

2019-05-08 Thread songbird
Paul Moore wrote: > Golly supports both bounded and > unbounded universes. I don't know how it does it, and (obviously) it > will hit limits *somewhere*, but I consider support of unbounded > universes to mean that any failure modes will not be attributable to > limi

Farewell, Python 3.4

2019-05-08 Thread Larry Hastings
It's with a note of sadness that I announce the final retirement of Python 3.4.  The final release was back in March, but I didn't get around to actually closing and deleting the 3.4 branch until this morning. Python 3.4 introduced many features we all enjoy in modern Python--the asyncio, en

Django Potential Fork Bomb

2019-05-08 Thread Shakti Kumar
Hello team, I am using django runserver 0.0.0.0: for one of my dev server. However, I notice that a second query from the GUI executes any command in my python app twice (I could see 2 prints), a third query executes it three times, and so on. This kept growing with each query and today my dev se

Re: Django Potential Fork Bomb

2019-05-08 Thread dieter
Shakti Kumar writes: > ... > I suspect django spawned too many child processes, and consecutively I ran > out of resources on my dev server. How can I prevent this from happening? > And I am not able to understand why django should spawn (if it indeed is > spawning) incrementing processes with eac