Gimp-Python

2005-08-21 Thread danilo
Salve, qualcuno sa se è ancora in fase di sviluppo e qual'è il sito di riferimento? Grazie Danilo -- Using Opera's revolutionary e-mail client: http://www.opera.com/m2/ -- http://mail.python.org/mailman/listinfo/python-list

Configuration: Apache + mod_python

2007-03-08 Thread Danilo
Hi there, is it possible to create a rewrite rule to send every server-request to the directory /py? But only if the file does not exists on the server. This is my mod_python section of the apache config-file. SetHandler python-program PythonHandler django.core.handlers.modpytho

Re: Configuration: Apache + mod_python

2007-03-08 Thread Danilo
On 8 Mrz., 12:18, [EMAIL PROTECTED] wrote: > On Mar 8, 9:50 pm, "Danilo" <[EMAIL PROTECTED]> wrote: > > > Hi there, > > > is it possible to create a rewrite rule to send every server-request > > to the directory /py? But only if the file does not

Re: Configuration: Apache + mod_python

2007-03-09 Thread Danilo
On 8 Mrz., 22:23, [EMAIL PROTECTED] wrote: > On Mar 9, 12:02 am, "Danilo" <[EMAIL PROTECTED]> wrote: > > > > > On 8 Mrz., 12:18, [EMAIL PROTECTED] wrote: > > > > On Mar 8, 9:50 pm, "Danilo" <[EMAIL PROTECTED]> wrote: > > >

Re: Python Behind a Squid Corporate Proxy on Windows

2008-08-21 Thread Danilo
Hi, do you manage to go through the proxy? I'm having the same problem with error 407. I've tried many solutions from the web but it always show the same error. So, if you solved your problem, please, post it here. Thanks Danilo On 18 jul, 15:43, Larry Hale <[EMAIL PROTECTED]>

Re: Python3-3.7.3: cannot run pdb

2019-06-07 Thread Danilo Coccia
Il 07/06/2019 19:31, Rich Shepard ha scritto: > On Fri, 7 Jun 2019, MRAB wrote: > >> It's possible that the error is actually on the previous line and that it >> thinks that what's on line 35 is a continuation of what's on line 34, but >> it isn't. > > MRAB, > > If that's the case I'm missing se

Re: join and split with empty delimiter

2019-07-18 Thread Danilo Coccia
Il 18/07/2019 12:27, Ben Bacarisse ha scritto: > Irv Kalb writes: > >> I have always thought that split and join are opposite functions. For >> example, you can use a comma as a delimiter: >> > myList = ['a', 'b', 'c', 'd', 'e'] > myString = ','.join(myList) > print(myString) >> a,b,

Re: FW: Pycharm Won't Do Long Underscore

2020-07-02 Thread Danilo Coccia
Il 30/06/2020 23:46, Joe Pfeiffer ha scritto: > "Peter J. Holzer" writes: > >> On 2020-06-24 15:33:16 -0600, Joe Pfeiffer wrote: >>> One other note -- while you may want various good-looking fonts with >>> ligatures in other domains, for writing code a monospace font with no >>> ligatures lets yo

Re: lambdak: multi-line lambda implementation in native Python

2015-01-17 Thread Danilo Coccia
Il 17/01/2015 12.07, Marko Rauhamaa ha scritto: > Jussi Piitulainen : > >> a+ b => 7 # a() + b >> a +b => 3 # a(+b) => a(b) => a(1) = 1 + 2 >> >> I'm not quite fond of such surprise in programming language syntax. > > Yes, whoever came up with the idea of whitespace having syntactic > sig