Re: problem with listdir

2008-04-26 Thread David
On Sat, Apr 26, 2008 at 7:56 PM, jimgardener <[EMAIL PROTECTED]> wrote: > > > * Run cmd.exe and see if you can run "dir f:\\code\\python\pgmgallery/*.*" > > > > that causes a message 'Invalid switch - "*.*".' > > Probably because on the command-line, / means a command-line option. Been a while

Re: Python(2.5) reads an input file FASTER than pure C(Mingw)

2008-04-26 Thread n00m
Oops... I spotted a slip in my C++ code. Forgot " - t" in cout << clock()/CLOCKS_PER_SEC << endl; The correct proportion is 7.5s / 2.75s = 2.7 times. -- http://mail.python.org/mailman/listinfo/python-list

Re: diffing and uniqing directories

2008-04-26 Thread castironpi
On Apr 26, 10:35 pm, rustom <[EMAIL PROTECTED]> wrote: > On Apr 27, 12:31 am, [EMAIL PROTECTED] wrote: > > > > > > > On Apr 26, 1:14 pm, "Rustom Mody" <[EMAIL PROTECTED]> wrote: > > > > Over years Ive collected tgz's of my directories. I would like to diff > > > and uniq them > > > > Now I guess it

Re: Why can't timedeltas be divided?

2008-04-26 Thread castironpi
On Apr 26, 10:27 pm, Jon Ribbens <[EMAIL PROTECTED]> wrote: > On 2008-04-27, Martin v. Löwis <[EMAIL PROTECTED]> wrote: > > >> sorry for bringing up such an old thread, but this seems important to me > >> -- up to now, there are thousands [1] of python programs that use > >> hardcoded time calculat

Re: Python(2.5) reads an input file FASTER than pure C(Mingw)

2008-04-26 Thread n00m
One more brick. This time I compare list.sort() vs sort(vector). Incredible. Python does it by 8.3s / 2.75s = 3 times faster than C++. import time f=open('D:\\v.txt','r') z=f.readlines() f.close() t=time.time() z.sort() print time.time()-t m=int(raw_input()) print z[m] #include #include #incl

Re: So you think PythonCard is old? Here's new wine in an old bottle.

2008-04-26 Thread John Henry
On Apr 26, 3:03 pm, John Henry <[EMAIL PROTECTED]> wrote: > On Apr 26, 8:46 am, [EMAIL PROTECTED] (Aahz) wrote: > > > > > > > In article <[EMAIL PROTECTED]>, > > John Henry  <[EMAIL PROTECTED]> wrote: > > > >But then I looked closer.  It turns out the XML file created by > > >QxTransformer is *very

Re: How do I say "Is this a function"?

2008-04-26 Thread John Henry
On Apr 26, 6:08 pm, "Martin v. Löwis" <[EMAIL PROTECTED]> wrote: > > def f1(): > >    print "In f1" > > > def f3(): > >    print "In f3" > > > def others(): > >    print "In others" > > > for i in xrange(1,3): > >    fct = "f%d()"%(i+1) > >    try: > >       exec fct > >    except: > >       others

Re: Python(2.5) reads an input file FASTER than pure C(Mingw)

2008-04-26 Thread n00m
Dennis Lee Bieber wrote: > (untested for both): > -=-=-=-=-=-=- Many thanks but alas both your codes got "wrong answer" verdict. I can't understand why; they seem Ok (but I'm a bit sleepy:)). -- http://mail.python.org/mailman/listinfo/python-list

Re: Desktop notifications on Windows

2008-04-26 Thread Mike Driscoll
On Apr 26, 4:08 pm, WindPower <[EMAIL PROTECTED]> wrote: > On Apr 26, 4:52 am, David <[EMAIL PROTECTED]> wrote: > > > On Sat, Apr 26, 2008 at 4:41 AM,  <[EMAIL PROTECTED]> wrote: > > > I'm looking for a way to implement desktop notifications (much like an > > >  instant messaging program or a mail

Re: What to download when updating?

2008-04-26 Thread Mike Driscoll
On Apr 26, 4:57 pm, Gilles Ganault <[EMAIL PROTECTED]> wrote: > Hello > >         Out of curiosity, if I recompile a Python (wxPython) app with > py2exe, can I have customers just download the latest .exe, or are > there dependencies that require downloading the whole thing again? > > FWIW, here's

Re: diffing and uniqing directories

2008-04-26 Thread rustom
On Apr 27, 12:31 am, [EMAIL PROTECTED] wrote: > On Apr 26, 1:14 pm, "Rustom Mody" <[EMAIL PROTECTED]> wrote: > > > > > Over years Ive collected tgz's of my directories. I would like to diff > > and uniq them > > > Now I guess it would be quite simple to write a script that does a > > walk or find t

Re: Why can't timedeltas be divided?

2008-04-26 Thread Jon Ribbens
On 2008-04-27, Martin v. Löwis <[EMAIL PROTECTED]> wrote: >> sorry for bringing up such an old thread, but this seems important to me >> -- up to now, there are thousands [1] of python programs that use >> hardcoded time calculations. > > Would you like to work on a patch? Last time I brought up

Re: Python(2.5) reads an input file FASTER than pure C(Mingw)

2008-04-26 Thread Christian Heimes
SL schrieb: > Is there an implementation of f.readlines on the internet somewhere? > interested to see in how they implemented it. I'm pretty sure they did > it smarter than just reserve 100meg of data :) Of course it is. Checkout the Python sources :) Christian -- http://mail.python.org/mailman

Re: python and web programming, easy way...?

2008-04-26 Thread miya
On Apr 26, 4:36 pm, bvidinli <[EMAIL PROTECTED]> wrote: > Hi, > > i use currently python for console programming. > in past, i tried it for web programming, to use it instead of php. > Unfortunately, i failed in my attempt to switch to python. > Currently, i make many webbased programs and a "Easy

Re: Python(2.5) reads an input file FASTER than pure C(Mingw)

2008-04-26 Thread n00m
Btw seems all accepted pyth solutions (for this prob) used Psyco. -- http://mail.python.org/mailman/listinfo/python-list

Re: Python(2.5) reads an input file FASTER than pure C(Mingw)

2008-04-26 Thread n00m
I'm there since summer 2004 :) (with several time breaks) -- http://mail.python.org/mailman/listinfo/python-list

Re: learning with python question (HtTLaPP)

2008-04-26 Thread Eric Wertman
On Sat, Apr 26, 2008 at 7:50 PM, <[EMAIL PROTECTED]> wrote: > ok.. I finally made something that works.. Please let me know what you > think: > > >>> def lines(letters): > fin = open('words.txt') > count = 0 > rescount = 0 # count the number of results > results

Re: Why can't timedeltas be divided?

2008-04-26 Thread Martin v. Löwis
> sorry for bringing up such an old thread, but this seems important to me > -- up to now, there are thousands [1] of python programs that use > hardcoded time calculations. Would you like to work on a patch? Regards, Martin -- http://mail.python.org/mailman/listinfo/python-list

Re: How do I say "Is this a function"?

2008-04-26 Thread Martin v. Löwis
> def f1(): >print "In f1" > > def f3(): >print "In f3" > > def others(): >print "In others" > > for i in xrange(1,3): >fct = "f%d()"%(i+1) >try: > exec fct >except: > others() I'd write that as for i in xrange(1,3): globals().get("f%d" % (i+1), others)(

Re: How do I say "Is this a function"?

2008-04-26 Thread John Machin
Dan Bishop wrote: On Apr 26, 6:17 pm, John Henry <[EMAIL PROTECTED]> wrote: How do I determine is something a function? For instance, I don't want to relying on exceptions below: And why not? def f1(): print "In f1" def f3(): print "In f3" def others(): print "In others" for i

Re: How do I say "Is this a function"?

2008-04-26 Thread Martin P. Hellwig
John Henry wrote: How do I determine is something a function? For instance, I don't want to relying on exceptions below: def f1(): print "In f1" def f3(): print "In f3" def others(): print "In others" for i in xrange(1,3): fct = "f%d()"%(i+1) try: exec fct except:

Re: Python(2.5) reads an input file FASTER than pure C(Mingw)

2008-04-26 Thread hdante
On Apr 26, 8:28 pm, n00m <[EMAIL PROTECTED]> wrote: > No so simple, guys. > E.g., I can't solve (in Python) this:http://www.spoj.pl/problems/INTEST/ > Keep getting TLE (time limit exceeded). Any ideas? After all, it's > weekend. > > 450. Enormous Input Test > Problem code: INTEST > > The purpose of

Re: How do I say "Is this a function"?

2008-04-26 Thread [EMAIL PROTECTED]
callable(func) returns whether something is callable(will return true for classes, functions, and objects with __call__ methods). On Apr 26, 6:25 pm, Dan Bishop <[EMAIL PROTECTED]> wrote: > On Apr 26, 6:17 pm, John Henry <[EMAIL PROTECTED]> wrote: > > > > > How do I determine is something a functi

Re: Why can't timedeltas be divided?

2008-04-26 Thread webograph
On Thu, 25 May 2006, maric wrote: > The ratio of two durations has no meaning??? Oh, sorry, sure it has, I wanted to say "it has no meaning in timedelta provided arithmetic". It's a ratio (no dimension) not a duration. In that sense the expected result should be a float, and the proposed operat

Re: learning with python question (HtTLaPP)

2008-04-26 Thread umpsumps
ok.. I finally made something that works.. Please let me know what you think: >>> def lines(letters): fin = open('words.txt') count = 0 rescount = 0 # count the number of results results = "" # there are words that contain the letters for line in fin:

Re: Python(2.5) reads an input file FASTER than pure C(Mingw)

2008-04-26 Thread n00m
No so simple, guys. E.g., I can't solve (in Python) this: http://www.spoj.pl/problems/INTEST/ Keep getting TLE (time limit exceeded). Any ideas? After all, it's weekend. 450. Enormous Input Test Problem code: INTEST The purpose of this problem is to verify whether the method you are using to rea

Re: How do I say "Is this a function"?

2008-04-26 Thread Dan Bishop
On Apr 26, 6:17 pm, John Henry <[EMAIL PROTECTED]> wrote: > How do I determine is something a function? > > For instance, I don't want to relying on exceptions below: > > def f1(): >print "In f1" > > def f3(): >print "In f3" > > def others(): >print "In others" > > for i in xrange(1,3):

How do I say "Is this a function"?

2008-04-26 Thread John Henry
How do I determine is something a function? For instance, I don't want to relying on exceptions below: def f1(): print "In f1" def f3(): print "In f3" def others(): print "In others" for i in xrange(1,3): fct = "f%d()"%(i+1) try: exec fct except: others() I wish

Re: So you think PythonCard is old? Here's new wine in an old bottle.

2008-04-26 Thread John Henry
On Apr 26, 4:05 pm, [EMAIL PROTECTED] wrote: > On Apr 26, 5:03 pm, John Henry <[EMAIL PROTECTED]> wrote: > > > > > On Apr 26, 8:46 am, [EMAIL PROTECTED] (Aahz) wrote: > > > > In article <[EMAIL PROTECTED]>, > > > John Henry <[EMAIL PROTECTED]> wrote: > > > > >But then I looked closer. It turns ou

Re: So you think PythonCard is old? Here's new wine in an old bottle.

2008-04-26 Thread castironpi
On Apr 26, 5:03 pm, John Henry <[EMAIL PROTECTED]> wrote: > On Apr 26, 8:46 am, [EMAIL PROTECTED] (Aahz) wrote: > > > > > > > In article <[EMAIL PROTECTED]>, > > John Henry  <[EMAIL PROTECTED]> wrote: > > > >But then I looked closer.  It turns out the XML file created by > > >QxTransformer is *very

Re: learning with python question (HtTLaPP)

2008-04-26 Thread umpsumps
This is what I'm stuck on. I keep doing things like: for line in fin: for ch in letters: if ch not in line: I've tried for ch in letters: for line in fin: too.. Should I use a while statement? What's the best way to compare a group of letters to a line? > This would be a m

Re: So you think PythonCard is old? Here's new wine in an old bottle.

2008-04-26 Thread John Henry
On Apr 26, 8:46 am, [EMAIL PROTECTED] (Aahz) wrote: > In article <[EMAIL PROTECTED]>, > John Henry <[EMAIL PROTECTED]> wrote: > > > > >But then I looked closer. It turns out the XML file created by > >QxTransformer is *very* similar in structure when compared to the > >resource files used inPytho

Re: learning with python question (HtTLaPP)

2008-04-26 Thread Eric Wertman
> Is the way I wrote the function inherently wrong? What I wrote I would not say that. I think a lot of people probably start off like that with python. You'll find in most cases that manually keeping counters isn't necessary. If you really want to learn python though, I would suggest using b

[py2exe] What to download when updating?

2008-04-26 Thread Gilles Ganault
Hello Out of curiosity, if I recompile a Python (wxPython) app with py2exe, can I have customers just download the latest .exe, or are there dependencies that require downloading the whole thing again? FWIW, here's the list of files that were created after running py2exe: myprog.exe bz2.

Re: Parsing HTML?

2008-04-26 Thread Stefan Behnel
Benjamin wrote: > On Apr 6, 11:03 pm, Stefan Behnel <[EMAIL PROTECTED]> wrote: >> Benjamin wrote: >>> I'm trying to parse an HTML file. I want to retrieve all of the text >>> inside a certain tag that I find with XPath. The DOM seems to make >>> this available with the innerHTML element, but I ha

Re: learning with python question (HtTLaPP)

2008-04-26 Thread umpsumps
Eric, Thank you for helping. Is the way I wrote the function inherently wrong? What I wrote returns the sequence, however I'm trying to make the output match for the letters in the string entered, not necessarily the string sequence. For example if I search words.txt with my function for 'uzi'

Re: Python(2.5) reads an input file FASTER than pure C(Mingw)

2008-04-26 Thread hdante
On Apr 26, 5:54 pm, n00m <[EMAIL PROTECTED]> wrote: > hdante: > > I run your code quite a few times. > Its time = 0.734s. > Of mine = 0.703-0.718s. > > PS All I have is an ancient Mingw compiler (~1.9.5v) in Dev-C++. Okay, now I believe in you. :-P The next step would be to reimplement readline.

Re: Parsing HTML?

2008-04-26 Thread Benjamin
On Apr 6, 11:03 pm, Stefan Behnel <[EMAIL PROTECTED]> wrote: > Benjamin wrote: > > I'm trying to parse an HTML file.  I want to retrieve all of the text > > inside a certain tag that I find with XPath.  The DOM seems to make > > this available with the innerHTML element, but I haven't found a way >

Re: Parsing HTML?

2008-04-26 Thread Benjamin
On Apr 3, 9:10 pm, 7stud <[EMAIL PROTECTED]> wrote: > On Apr 3, 12:39 am, [EMAIL PROTECTED] wrote: > > > BeautifulSoup does what I need it to.  Though, I was hoping to find > > something that would let me work with the DOM the way JavaScript can > > work with web browsers' implementations of the DO

Re: Python(2.5) reads an input file FASTER than pure C(Mingw)

2008-04-26 Thread Carl Banks
On Apr 26, 12:15 pm, n00m <[EMAIL PROTECTED]> wrote: > fgets() from C++ iostream library??? Sheesh. That'll teach me to read carefully. (Ok, it probably won't.) Other two points still apply. Carl Banks -- http://mail.python.org/mailman/listinfo/python-list

Re: Desktop notifications on Windows

2008-04-26 Thread WindPower
On Apr 26, 4:52 am, David <[EMAIL PROTECTED]> wrote: > On Sat, Apr 26, 2008 at 4:41 AM, <[EMAIL PROTECTED]> wrote: > > I'm looking for a way to implement desktop notifications (much like an > > instant messaging program or a mail notifier) within my Python > > application, on Windows only (no Gt

Re: Python(2.5) reads an input file FASTER than pure C(Mingw)

2008-04-26 Thread n00m
hdante: I run your code quite a few times. Its time = 0.734s. Of mine = 0.703-0.718s. PS All I have is an ancient Mingw compiler (~1.9.5v) in Dev-C++. -- http://mail.python.org/mailman/listinfo/python-list

Re: python and web programming, easy way...?

2008-04-26 Thread Chris Ortner
On Apr 26, 9:36 pm, bvidinli <[EMAIL PROTECTED]> wrote: > Please provide me the quickest/most appropriate solution for web > programming in python. > i will try to switch to python in ehcp too.. > > Currently my web programs are simple Object Oriented programs, that > basicly uses a few files, in p

Re: learning with python question (HtTLaPP)

2008-04-26 Thread Eric Wertman
> Python Programmer" and have been trying to write a script that checks > 'words.txt' for parameters (letters) given. The problem that is the i > can only get results for the exact sequence of parameter 'letters'. The "re" module comes to mind: text = open('words.txt','r').read() letters = 's

Re: Python(2.5) reads an input file FASTER than pure C(Mingw)

2008-04-26 Thread n00m
>> char vs[1002000][99]; In the file 1001622(or so) records like phone number + f/l names. So the reserving makes sense, i think. Populating of vector is by zillion times slower. >> Is there an implementation of f.readlines on the internet somewhere? I was greatly surprised how fast it is. As a

learning with python question (HtTLaPP)

2008-04-26 Thread umpsumps
Hello all, I've been trying to teach myself python from "How to Think Like a Python Programmer" and have been trying to write a script that checks 'words.txt' for parameters (letters) given. The problem that is the i can only get results for the exact sequnce of parameter 'letters'. I'll spare po

python and web programming, easy way...?

2008-04-26 Thread bvidinli
Hi, i use currently python for console programming. in past, i tried it for web programming, to use it instead of php. Unfortunately, i failed in my attempt to switch to python. Currently, i make many webbased programs and a "Easy Hosting Control Panel " (www.ehcp.net) that runs on php, ehcp is a

Re: diffing and uniqing directories

2008-04-26 Thread castironpi
On Apr 26, 1:14 pm, "Rustom Mody" <[EMAIL PROTECTED]> wrote: > Over years Ive collected tgz's of my directories. I would like to diff > and uniq them > > Now I guess it would be quite simple to write a script that does a > walk or find through a pair of directory trees, makes a SHA1 of each > file

Apologize: annoying dictionary problem, non-existing keys

2008-04-26 Thread bvidinli
Thank you all for your answers. i get many usefull answers and someone remembered me of avoiding cross-posting. i apologize from all of you, for cross posting and disturbing. that day was not a good day for me... it is my fault.. sory and have nice days... 26 Nisan 2008 Cumartesi 02:52 tarihi

Re: Python(2.5) reads an input file FASTER than pure C(Mingw)

2008-04-26 Thread hdante
On Apr 26, 1:15 pm, n00m <[EMAIL PROTECTED]> wrote: > fgets() from C++ iostream library??? > fgets is part of the standard C++ library and it lives in the std namespace. > I guess if I'd came up with "Python reads SLOWER than C" > I'd get another (not less) smart explanation "why it's so". -- ht

Re: Python(2.5) reads an input file FASTER than pure C(Mingw)

2008-04-26 Thread hdante
On Apr 26, 12:10 pm, n00m <[EMAIL PROTECTED]> wrote: > Both codes below read the same huge(~35MB) text file. > In the file > 100 lines, the length of each line < 99 chars. > > Stable result: > Python runs ~0.65s > C : ~0.70s > > Any thoughts? > > import time > t=time.time() > f=open('D:\\some.t

Re: Calling Python code from inside php

2008-04-26 Thread Diez B. Roggisch
Eric Wertman schrieb: > A simple yet dangerous and rather rubbish solution (possibly more of a > hack than a real implementation) could be achieved by using a > technique described above: > > echo exec('python foo.py'); This will spawn a Python interpreter, and not be particularly

Re: Python(2.5) reads an input file FASTER than pure C(Mingw)

2008-04-26 Thread SL
"SL" <[EMAIL PROTECTED]> schreef in bericht news:[EMAIL PROTECTED] "n00m" <[EMAIL PROTECTED]> schreef in bericht news:[EMAIL PROTECTED] using namespace std; char vs[1002000][99]; if (!fgets(vs[i],999,fp)) break; BTW why are you declaring the array as 99 and pass 999 to fgets to r

Re: Python(2.5) reads an input file FASTER than pure C(Mingw)

2008-04-26 Thread SL
"n00m" <[EMAIL PROTECTED]> schreef in bericht news:[EMAIL PROTECTED] import time t=time.time() f=open('D:\\some.txt','r') z=f.readlines() f.close() print len(z) print time.time()-t m=input() print z[m] #include #include #include #include using namespace std; char vs[1002000][99]; FILE *f

diffing and uniqing directories

2008-04-26 Thread Rustom Mody
Over years Ive collected tgz's of my directories. I would like to diff and uniq them Now I guess it would be quite simple to write a script that does a walk or find through a pair of directory trees, makes a SHA1 of each file and then sorts out the files whose SHA1s are the same/different. What is

Re: problem with listdir

2008-04-26 Thread jimgardener
> * Run cmd.exe and see if you can run "dir f:\\code\\python\pgmgallery/*.*" > that causes a message 'Invalid switch - "*.*".' > * Try using other directories under F: drive in your program and see> when > you start hitting the problem. i tried that..on some directories in the same drive this

Re: Setting an attribute without calling __setattr__()

2008-04-26 Thread Arnaud Delobelle
[EMAIL PROTECTED] (Aahz) writes: > In article <[EMAIL PROTECTED]>, > Arnaud Delobelle <[EMAIL PROTECTED]> wrote: >>Joshua Kugler <[EMAIL PROTECTED]> writes: >>> >>> self.me = [] >>> for v in obj: >>> self.me.append(ObjectProxy(v)) >> >>Note that is could be

Re: Python(2.5) reads an input file FASTER than pure C(Mingw)

2008-04-26 Thread n00m
fgets() from C++ iostream library??? I guess if I'd came up with "Python reads SLOWER than C" I'd get another (not less) smart explanation "why it's so". -- http://mail.python.org/mailman/listinfo/python-list

get data back crack

2008-04-26 Thread lscbtfws
get data back crack http://cracks.00bp.com F R E E C R A C K S -- http://mail.python.org/mailman/listinfo/python-list

dfx audio enhancer crack

2008-04-26 Thread lscbtfws
dfx audio enhancer crack http://cracks.00bp.com F R E E C R A C K S -- http://mail.python.org/mailman/listinfo/python-list

age of empires III crack

2008-04-26 Thread lscbtfws
age of empires III crack http://cracks.00bp.com F R E E C R A C K S -- http://mail.python.org/mailman/listinfo/python-list

empire earth 2 crack

2008-04-26 Thread lscbtfws
empire earth 2 crack http://cracks.00bp.com F R E E C R A C K S -- http://mail.python.org/mailman/listinfo/python-list

capture nx crack

2008-04-26 Thread lscbtfws
capture nx crack http://cracks.00bp.com F R E E C R A C K S -- http://mail.python.org/mailman/listinfo/python-list

Power mp3 cutter crack

2008-04-26 Thread lscbtfws
Power mp3 cutter crack http://cracks.00bp.com F R E E C R A C K S -- http://mail.python.org/mailman/listinfo/python-list

xpand rally crack

2008-04-26 Thread lscbtfws
xpand rally crack http://cracks.00bp.com F R E E C R A C K S -- http://mail.python.org/mailman/listinfo/python-list

Re: Setting an attribute without calling __setattr__()

2008-04-26 Thread Marc 'BlackJack' Rintsch
On Sat, 26 Apr 2008 08:28:38 -0700, animalMutha wrote: >> Consider reading the *second* paragraph about __setattr__ in section >> 3.4.2 of the Python Reference Manual. > > if you are simply going to answer rtfm - might as well kept it to > yourself. Yes, but if you are telling where exactly to f

Re: So you think PythonCard is old? Here's new wine in an old bottle.

2008-04-26 Thread Aahz
In article <[EMAIL PROTECTED]>, John Henry <[EMAIL PROTECTED]> wrote: > >But then I looked closer. It turns out the XML file created by >QxTransformer is *very* similar in structure when compared to the >resource files used in PythonCard. Since there are no GUI builders >for QxTransformer, and I

Re: Setting an attribute without calling __setattr__()

2008-04-26 Thread Aahz
In article <[EMAIL PROTECTED]>, Arnaud Delobelle <[EMAIL PROTECTED]> wrote: >Joshua Kugler <[EMAIL PROTECTED]> writes: >> >> self.me = [] >> for v in obj: >> self.me.append(ObjectProxy(v)) > >Note that is could be spelt: > >self.me = map(ObjectProxy, v) It

Re: Python(2.5) reads an input file FASTER than pure C(Mingw)

2008-04-26 Thread Carl Banks
On Apr 26, 11:10 am, n00m <[EMAIL PROTECTED]> wrote: > Both codes below read the same huge(~35MB) text file. > In the file > 100 lines, the length of each line < 99 chars. > > Stable result: > Python runs ~0.65s > C : ~0.70s > > Any thoughts? Yes. Most of the dirty work in the Python example

big city adventure crack

2008-04-26 Thread fr5478bey
big city adventure crack http://cracks.00bp.com F R E E C R A C K S -- http://mail.python.org/mailman/listinfo/python-list

bookworm adventure crack

2008-04-26 Thread fr5478bey
bookworm adventure crack http://cracks.00bp.com F R E E C R A C K S -- http://mail.python.org/mailman/listinfo/python-list

avg internet security crack

2008-04-26 Thread fr5478bey
avg internet security crack http://cracks.00bp.com F R E E C R A C K S -- http://mail.python.org/mailman/listinfo/python-list

navigon 6 crack

2008-04-26 Thread fr5478bey
navigon 6 crack http://cracks.00bp.com F R E E C R A C K S -- http://mail.python.org/mailman/listinfo/python-list

vegas crack

2008-04-26 Thread fr5478bey
vegas crack http://cracks.00bp.com F R E E C R A C K S -- http://mail.python.org/mailman/listinfo/python-list

photoshop cs crack

2008-04-26 Thread fr5478bey
photoshop cs crack http://cracks.00bp.com F R E E C R A C K S -- http://mail.python.org/mailman/listinfo/python-list

nod crack

2008-04-26 Thread fr5478bey
nod crack http://cracks.00bp.com F R E E C R A C K S -- http://mail.python.org/mailman/listinfo/python-list

doom 3 crack

2008-04-26 Thread fr5478bey
doom 3 crack http://cracks.00bp.com F R E E C R A C K S -- http://mail.python.org/mailman/listinfo/python-list

inventor12 crack

2008-04-26 Thread fr5478bey
inventor12 crack http://cracks.00bp.com F R E E C R A C K S -- http://mail.python.org/mailman/listinfo/python-list

Capture NX 1.2 crack

2008-04-26 Thread fr5478bey
Capture NX 1.2 crack http://cracks.00bp.com F R E E C R A C K S -- http://mail.python.org/mailman/listinfo/python-list

tiberium wars crack

2008-04-26 Thread fr5478bey
tiberium wars crack http://cracks.00bp.com F R E E C R A C K S -- http://mail.python.org/mailman/listinfo/python-list

RegistryBooster2 crack

2008-04-26 Thread fr5478bey
RegistryBooster2 crack http://cracks.00bp.com F R E E C R A C K S -- http://mail.python.org/mailman/listinfo/python-list

Treasures Of Montezuma crack

2008-04-26 Thread fr5478bey
Treasures Of Montezuma crack http://cracks.00bp.com F R E E C R A C K S -- http://mail.python.org/mailman/listinfo/python-list

registry mechanic 7.0 crack

2008-04-26 Thread fr5478bey
registry mechanic 7.0 crack http://cracks.00bp.com F R E E C R A C K S -- http://mail.python.org/mailman/listinfo/python-list

Spy Emergency 2007 crack

2008-04-26 Thread fr5478bey
Spy Emergency 2007 crack http://cracks.00bp.com F R E E C R A C K S -- http://mail.python.org/mailman/listinfo/python-list

Re: Setting an attribute without calling __setattr__()

2008-04-26 Thread animalMutha
> Consider reading the *second* paragraph about __setattr__ in section > 3.4.2 of the Python Reference Manual. if you are simply going to answer rtfm - might as well kept it to yourself. -- http://mail.python.org/mailman/listinfo/python-list

Re: Pyserial - send and receive characters through linux serial port

2008-04-26 Thread Grant Edwards
On 2008-04-25, terry <[EMAIL PROTECTED]> wrote: > I am trying to send a character to '/dev/ttyS0' and expect the > same character and upon receipt I want to send another > character. I tired with Pyserial but in vain. Pyserial works. I've been using it almost daily for many years. Either your p

Re: Setting an attribute without calling __setattr__()

2008-04-26 Thread animalMutha
Hrvoje Niksic wrote: > Hrvoje Niksic <[EMAIL PROTECTED]> writes: > > > Joshua Kugler <[EMAIL PROTECTED]> writes: > > > >> self.me = [] > >> self.me = {} > > > > Use "object.__setattr__(self, 'me') = []" and likewise for {}. > > Oops, that should of course be "object.__seta

Python(2.5) reads an input file FASTER than pure C(Mingw)

2008-04-26 Thread n00m
Both codes below read the same huge(~35MB) text file. In the file > 100 lines, the length of each line < 99 chars. Stable result: Python runs ~0.65s C : ~0.70s Any thoughts? import time t=time.time() f=open('D:\\some.txt','r') z=f.readlines() f.close() print len(z) print time.time()-t m=inp

Re: Logging ancestors ignored if config changes?

2008-04-26 Thread Vinay Sajip
On 26 Apr, 04:02, andrew cooke <[EMAIL PROTECTED]> wrote: > Hi, > > I am seeing some odd behaviour withloggingwhich would be explained > if loggers that are not defined explicitly (but which are controlled > via their ancestors) must be created after theloggingsystem is > configured via fileConfig(

red alert 2 cd crack

2008-04-26 Thread marli305nugent
red alert 2 cd crack http://cracks.00bp.com F R E E C R A C K S -- http://mail.python.org/mailman/listinfo/python-list

xp password crack

2008-04-26 Thread marli305nugent
xp password crack http://cracks.00bp.com F R E E C R A C K S -- http://mail.python.org/mailman/listinfo/python-list

crack cocaine pictures

2008-04-26 Thread marli305nugent
crack cocaine pictures http://cracks.00bp.com F R E E C R A C K S -- http://mail.python.org/mailman/listinfo/python-list

chessgenius 1.6 crack

2008-04-26 Thread marli305nugent
chessgenius 1.6 crack http://cracks.00bp.com F R E E C R A C K S -- http://mail.python.org/mailman/listinfo/python-list

norton internet security 2006 crack

2008-04-26 Thread marli305nugent
norton internet security 2006 crack http://cracks.00bp.com F R E E C R A C K S -- http://mail.python.org/mailman/listinfo/python-list

windows xp crack serial

2008-04-26 Thread marli305nugent
windows xp crack serial http://cracks.00bp.com F R E E C R A C K S -- http://mail.python.org/mailman/listinfo/python-list

area council patch news

2008-04-26 Thread marli305nugent
area council patch news http://cracks.00bp.com F R E E C R A C K S -- http://mail.python.org/mailman/listinfo/python-list

cracks full downloads

2008-04-26 Thread marli305nugent
cracks full downloads http://cracks.00bp.com F R E E C R A C K S -- http://mail.python.org/mailman/listinfo/python-list

num-lock serial crack keygen

2008-04-26 Thread carlwuhwdmckay
num-lock serial crack keygen http://cracks.00bp.com F R E E C R A C K S -- http://mail.python.org/mailman/listinfo/python-list

perfect patch

2008-04-26 Thread carlwuhwdmckay
perfect patch http://cracks.00bp.com F R E E C R A C K S -- http://mail.python.org/mailman/listinfo/python-list

garmin keygen

2008-04-26 Thread carlwuhwdmckay
garmin keygen http://cracks.00bp.com F R E E C R A C K S -- http://mail.python.org/mailman/listinfo/python-list

  1   2   >