Re: Is pip being automatically installed for Python 3.4.0?

2014-07-04 Thread Conrad Taylor
On Wednesday, July 2, 2014 9:59:46 PM UTC-7, Ned Deily wrote: > In article , > > Conrad Taylor wrote: > > > Hi, shouldn't pip be automatically installed for Python 3.4.0 release? I > > > have read through the release and the PEP 453. Thus, can someone confir

Re: Is pip being automatically installed for Python 3.4.0?

2014-07-02 Thread Conrad Taylor
On Wednesday, July 2, 2014 6:29:53 PM UTC-7, Frank Liou wrote: > it's truth > > > > pip will be automatically install Python3.4.0 > > > > if you want to use another version > > > > you should use wget This doesn't appear to be the case when installing via MacPorts. -- https://mail.pyth

Is pip being automatically installed for Python 3.4.0?

2014-07-02 Thread Conrad Taylor
Hi, shouldn't pip be automatically installed for Python 3.4.0 release? I have read through the release and the PEP 453. Thus, can someone confirm whether or not this is the case? BTW, I have installed Python 3.4.0 using MacPorts. -- Think different and code well, -Conrad --

Chris Miles? TGBooleanFormWidget?

2014-02-01 Thread Len Conrad
trying to install zoner. Needs http://www.psychofx.com/TGBooleanFormWidget/ but that's giving "502 Bad Gateway" can't find TGBooleanFormWidget anywhere else. Suggestions? Thanks Len -- https://mail.python.org/mailman/listinfo/python-list

Re: Python advanced course (preferably in NA)

2011-11-03 Thread Len Conrad
http://www.dabeaz.com/pythonmaster.html -- Original Message -- From: Emile van Sebille Date: Thu, 03 Nov 2011 14:25:03 -0700 >On 11/3/2011 11:13 AM Behnam said... >> Anybody is aware of any advanced course in Python preferably in north >> america? >> >>

Re: help with Python C-API, tuple object

2007-05-11 Thread fabian . conrad
On May 12, 2:49 pm, "Carsten Haese" <[EMAIL PROTECTED]> wrote: > On 11 May 2007 21:11:06 -0700, fabian.conrad wrote > > > Hi, > > sorry for the rather basic question but I've searched everywhere and > > don't find an answer. > > I want to call PyObject_CallObject from the Python C-API and pass a >

help with Python C-API, tuple object

2007-05-11 Thread fabian . conrad
Hi, sorry for the rather basic question but I've searched everywhere and don't find an answer. I want to call PyObject_CallObject from the Python C-API and pass a tuple I've created from a C-array How can I pass the tuple as an object rather then having to declare the python function with the numb

Re: Using Python for my web site

2006-08-01 Thread Conrad
On Tue, 01 Aug 2006 23:26:14 -0300, Gerhard Fiedler wrote: > On 2006-08-01 21:04:07, Conrad wrote: > >>> A few years ago I did some research, and the result was that while >>> PostgreSQL was claimed to have more features and a better design, the >>> reports of d

wxPython - Event processing order arbitrary across platforms?

2006-08-01 Thread Conrad
sity and coding go hand in hand. Cheers, Conrad -- http://mail.python.org/mailman/listinfo/python-list

Re: Using Python for my web site

2006-08-01 Thread Conrad
On Mon, 31 Jul 2006 17:12:56 -0300, Gerhard Fiedler wrote: > On 2006-07-31 15:00:15, Bruno Desthuilliers wrote: > >> In fact, the real question IMHO is: what would MySQL advantage over >> PostgreSQL be ?-) > > A few years ago I did some research, and the result was that while > PostgreSQL was cl

Re: Using Python for my web site

2006-08-01 Thread Conrad
On Mon, 31 Jul 2006 19:14:03 +0200, Bruno Desthuilliers wrote: > northband wrote: >> Hi, I am interested in re-writing my website in Python vs PHP but have a >> few questions. Here are my specs, please advise as to which >> configuration would be best: >> >> 1.Dell Poweredge Server, w/IIS, curren

help with designing an app. based on ConfigParser

2006-04-06 Thread Alexandre CONRAD
that ? Maybe an other module based on ConfigParser exists that would allow sub-sections ? I might be looking for something too complicated and maybe some simplier alternative exists which doesn't cross my mind right now. (no, don't tell me to use XML for my config file, it has to be ease

Re: OpenRTS - new OSS Python game

2006-02-01 Thread Christoph Conrad
Hello Sybren, > To be honest, it looks very much like games from 1995... You should notice: It's a first alpha version. Freundliche Grüße, Christoph -- http://mail.python.org/mailman/listinfo/python-list

Re: Match First Sequence in Regular Expression?

2006-01-26 Thread Christoph Conrad
Hallo Alex, >> r = re.compile("[^a]*a{3}b+(a+b*)*") matches = [s for s in >> listOfStringsToTest if r.match(s)] > Unfortunately, the OP's spec is even more complex than this, if we are > to take to the letter what you just quoted; e.g. aazaaab SHOULD match, Then it's again "a{3}b", isn't it? Fr

Re: Match First Sequence in Regular Expression?

2006-01-26 Thread Christoph Conrad
Hello Roger, > since the length of the first sequence of the letter 'a' is 2. Yours > accepts it, right? Yes, i misunderstood your requirements. So it must be modified essentially to that what Tim Chase wrote: m = re.search('^[^a]*a{3}b', 'xyz123aabbaaab') Best wishes from germany, Christo

Re: Match First Sequence in Regular Expression?

2006-01-26 Thread Christoph Conrad
Hello Roger, > I'm looking for a regular expression that matches the first, and only > the first, sequence of the letter 'a', and only if the length of the > sequence is exactly 3. import sys, re, os if __name__=='__main__': m = re.search('a{3}', 'xyz123aaabbaaaabaaabb') print m

Re: What module to use to get a file from a website?

2005-07-16 Thread Jonathan Conrad
from os import system system ("start http://www.python.org/";) -- http://mail.python.org/mailman/listinfo/python-list

Re: Reading variables from a forked child (Python C/API)

2005-07-15 Thread Jonathan Conrad
#ifdef def Donn Cave wrote: > Quoth MrEntropy <[EMAIL PROTECTED]>: > > | I'm having a little trouble getting an idea running. I am writing a C > | program which is really a frontend to a Python program. Now, my C > | program starts up, does some initialisation like initialisation of it's >