Search Discussions
-
Not offering any personal opinion on this conjecture, but a lot of people are saying that java has failed to become a widely accepted cross platform language for applications. These leaves the world ...
Netvegetable
Aug 19, 2002 at 4:13 am
Sep 6, 2002 at 10:38 am -
Sometimes we talk about "python extensions" in this group. Perhaps this raised some confusion in your mind. --Gilles import base64 base64.decodestring('Z2xlbmZhbnRAYmlnZm9vdC5jb20=\n') <tfrhvc at ...
Gillou
Aug 5, 2002 at 4:52 pm
Aug 22, 2002 at 7:16 pm -
Hey to all! I've started implementing a little program using Graham's spam filter for filtering mail. What this program momentarily tries to implement is a client/server based protocol with ...
Heiko Wundram
Aug 22, 2002 at 4:55 am
Oct 8, 2002 at 10:37 pm -
If s and t are strings, and I evaluate an expression of the form s[i:j] == t can I count on the implementation not to form s[i:j] as a new substring? Suppose, for instance, that s is many megabytes ...
Andrew Koenig
Aug 11, 2002 at 3:52 pm
Aug 14, 2002 at 2:42 am -
I have some advocacy to do on the many wonderful tools that Linux provides. While it is true that these tools are often available on other platforms, they just *seem* to work more smoothly in linux, ...
TuxTrax
Aug 1, 2002 at 9:05 am
Sep 7, 2002 at 2:00 pm -
Hello pythonians! I'm somewhat experienced in Tcl-scripting, and I generally still like Tcl, but there are some nasty edges in Tcl, which is the reason why I had a look at Python. I bought a small ...
Andreas Leitgeb
Aug 2, 2002 at 1:36 pm
Aug 7, 2002 at 2:42 pm -
I had a function along the following lines: def f(): if <condition : print <something else: <do something f() <do something else and I wanted to turn it into a generator instead of having it generate ...
Andrew Koenig
Aug 14, 2002 at 3:38 pm
Aug 22, 2002 at 6:07 am -
Hello, It appears that, a = b = [] is not the same as a=[] b=[] because in the previous case a and b will refer to the same list eg, [23] I am completely baffled by this. Can someone please explain? ...
Abhishek Roy
Aug 19, 2002 at 4:18 am
Aug 23, 2002 at 2:26 pm -
Well, not really, but in his remarks[1] on what was to become Ada he did say: """ I thought that it was a firm principle of language design -- out of concern for programming as a human activity -- ...
Al Vining
Aug 12, 2002 at 11:44 pm
Aug 17, 2002 at 4:31 pm -
The following snippet demonstrates it: --- snip --- def f(x,y): x+=y d='foo'; f(d,'bar'); print d # - 'foo' i=4; f(i,2); print i # - 4 #but: l=[1,2,3]; f(l,[7,8,9]); print l # - [1, 2, 3, 7, 8, 9] ...
Andreas Leitgeb
Aug 5, 2002 at 4:10 pm
Aug 9, 2002 at 3:35 pm -
In article <mailman.1030456801.18090.python-list at python.org , "Mark McEahern" <marklists at mceahern.com writes: http://www.tuxedo.org/~esr/jargon/html/entry/evil.html evil (adj.) As used by ...
Erno Kuusela
Aug 27, 2002 at 3:36 pm
Aug 29, 2002 at 7:11 pm -
Howdy folks, I'm building python 2.2.1 for installation into an NFS-shared software tree, and I've encountered what look like bugs in the Python build process: (1) The value of LDFLAGS (and CFLAGS ...
Lars Kellogg-Stedman
Aug 9, 2002 at 1:38 pm
Aug 21, 2002 at 7:17 pm -
Suppose I have a function that sometimes returns one value and sometimes returns two. What's the cleanest way to define such an interface? For the sake of this discussion, I'll use x to refer to the ...
Andrew Koenig
Aug 28, 2002 at 6:05 pm
Sep 3, 2002 at 1:20 pm -
Hi all. I really hosed emacs on my account. My wifes account is unaffected. She can use Emacs just fine. What happened is this: I went into KDE control panel, and changed some settings for the look ...
TuxTrax
Aug 9, 2002 at 2:04 am
Aug 31, 2002 at 8:22 pm -
Don't know how many saw the story on Slashdot about Paul Graham's article (http://www.paulgraham.com/spam.html) on how he filters spam. He posted two snippets of code in Lisp, a language which I only ...
John E. Barham
Aug 17, 2002 at 12:59 am
Aug 21, 2002 at 4:10 am -
Hello, If I understand, only one thread can be in the interpreter at any time. Now what I don't understand is being in the interpreter at a time part. I have written threaded programs with Python and ...
Mr. Neutron
Aug 21, 2002 at 6:18 pm
Aug 29, 2002 at 8:33 pm -
I am thinking of getting into Python but before I take the plunge I wanted to get some opinions on how the database connectivity is actually working in python since the work I will be doing will be ...
Jeff Schedin
Aug 6, 2002 at 4:46 am
Aug 16, 2002 at 1:41 pm -
Hi all. I've posted a similiar message in comp.lang.java.advocacy, just for curious, but it seems that most people don't know about python... Would you tell me how your company (or your boss, ...
D2002xx
Aug 18, 2002 at 11:01 am
Feb 4, 2004 at 6:46 am -
I wanna start learning some real programming language (I know now only Visual Basic , but i don't find it interesting ,sorry for the vb programmers, but this is my opinion). And I was reading some ...
Raphael Ribeiro
Aug 21, 2002 at 6:42 pm
Aug 27, 2002 at 8:11 pm -
26
convince me
I started learning perl but more recently I found python. Both look to have their advantages, so I'm having a hard time picking one to stick with and persue. I have seen arguments that python has ...Kyle Babich
Aug 5, 2002 at 1:17 pm
Aug 8, 2002 at 8:21 pm -
I've just came up with the idea which IMHO looks attracting. Imagine that you have a looong web page and you'd like to find entries of some phrase, not all of them are of interest. You run your ...
Serge Boiko
Aug 24, 2002 at 10:58 am
Sep 6, 2002 at 3:51 am -
Pyrex 0.4.3 is now available: http://www.cosc.canterbury.ac.nz/~greg/python/Pyrex/ New Features: * A new kind of for-loop has been added to the language for iterating over ranges of integers. ...
Greg Ewing
Aug 27, 2002 at 1:40 am
Aug 28, 2002 at 12:00 pm -
I've imported the sys module, and I'm SHOCKED that there is no way to access the argument count. The docs talk about accessing argv, but nothing about the argument count. Was something omitted from ...
Tony C
Aug 2, 2002 at 6:53 am
Aug 13, 2002 at 8:39 am -
Hi, I am working on a program that uses a list of lists MyList = [ [0] * 32767 for i in range(32767) ] My first realization is that it is incredibly slow just to create this list. Then I have a ...
Mr. Neutron
Aug 23, 2002 at 8:39 am
Aug 27, 2002 at 2:22 am -
I read this comments about Python in Linux Today which went mostly unanswered. I was wondering what your opinion on them is. The story had to do whis some comments that Scott McNealy made regarding ...
R.Marquez
Aug 6, 2002 at 7:48 pm
Aug 12, 2002 at 6:43 pm -
I'm trying to settle on Ruby or Python as my scripting language of choice. There are some features of Ruby that I like, but I lean toward Python since by day I'm a C++ programmer and Python seems ...
Steven Atkinson
Aug 9, 2002 at 4:04 am
Aug 14, 2002 at 6:36 am -
Hi all, I am *very* sorry is this has been answered before (I'm sure it must have at some point), but trawling Google Groups hasn't shown anything completely relevant to my question. I have written ...
Alan James Salmoni
Aug 29, 2002 at 5:37 pm
Sep 17, 2002 at 7:44 am -
With many thanks to Barry Warsaw for his help and patience, I am pleased to announce that a new format for PEPs (Python Enhancement Proposals) has been deployed. The new format is reStructuredText, a ...
David Goodger
Aug 30, 2002 at 4:23 am
Sep 4, 2002 at 7:08 pm -
A Python evangelist keeps telling me I need to try Python as it is so much quicker and easier to develop in then Java. Bottom line is I think the ease of learning is dependent on the quality of your ...
Jonathan Driller
Aug 13, 2002 at 2:48 am
Aug 20, 2002 at 8:00 am -
Hello all, since I wanted to test how fast python is in processing delimited text files, something common here, I wrote a quick and dirty mockup of such situation. I generated a file about 7MB long, ...
Nnes
Aug 7, 2002 at 2:21 pm
Aug 12, 2002 at 10:38 am -
Hello, World! In a recent thread [0] on the mod_python [1] mailing list, I'm wondering why there isn't a Python link on the main Apache web site. There are PHP, Perl and Tcl links but Python is ...
Fabian Fagerholm
Aug 23, 2002 at 9:51 am
Aug 30, 2002 at 8:31 pm -
I am an experienced programmer (C++, VB, HTML, Perl), and while learning Python I came across a problem! For GUI (Graphical User Interface) design, should I use the classic Tkinter or wxPython? Also, ...
Andrew M
Aug 14, 2002 at 12:45 am
Aug 19, 2002 at 11:44 pm -
This bug has been here since the 1.5 days. I once emailed it to Guido, but I it has never been included. Could someone see that it gets the right people? best -paul --- src/Objects/longobject.c Thu ...
Paul Sheer
Aug 17, 2002 at 6:13 pm
Aug 20, 2002 at 7:49 am -
Hi everybody, I need to write a Python script to call and execute a DOS .EXE application. How do I do that? I know that there is os.execv(path, args) and similars, but can't get the right syntax. ...
Fausto Arinos de A. Barbuto
Aug 27, 2002 at 4:05 am
Aug 29, 2002 at 2:37 pm -
18
stdio EOF ?
I'm trying to write a filter (between the GNU plotutils ode and graph). The problem I have is making it work in a situation like this: cat | filter.py | whatever (ode -f foo | filter.py | graph ... ...Jacek Generowicz
Aug 9, 2002 at 3:15 pm
Aug 22, 2002 at 4:52 pm -
I've written a simple portscanner (two version: the first without threads and the second one with threads). I just want to speed up more the scanning, what can i do? ----------- code snippets ...
Rhymes
Aug 3, 2002 at 9:07 am
Aug 7, 2002 at 7:58 am -
First, a warning: - I'm very poor in english. - I woke up way too early this morning. - It's a long post... (Sorry!) - I *love* python. This is not a troll, or anything like that. Ok. Here we go. I ...
Jean-François Ménard
Aug 28, 2002 at 3:00 pm
Aug 29, 2002 at 8:00 am -
Well, I want to throw away a _same_ garbage from a list with less of coding. This is current code, sure not the best ;-) Is any better solutions? --------------8<------------------------ lst = ['', ...
Bo M. Maryniuck
Aug 20, 2002 at 2:51 pm
Aug 21, 2002 at 9:59 am -
15
Python GUI
Hello. As a part some activity I have to research all the possible ways to write a GUI in Python. As a result, I have decided to make a page for the Python fans that would help them understand all ...Daniel Nuriyev
Aug 21, 2002 at 3:46 pm
Sep 10, 2002 at 11:32 pm -
I have opened a serial port and if there is nothing there to be read os.read() hangs whereas I want it to return "". if I try to open the fd with port = os.open("COM1", os.O_RDWR | os.O_NONBLOCK) I ...
Joe Connellan
Aug 23, 2002 at 10:32 am
Aug 29, 2002 at 8:58 am -
Hello everyone, Does anyone know if there is a way to execute javascript from within a Python script? I'm trying to write a script to browse a web site that makes use of javascript rather liberally. ...
Justin Guerin
Aug 26, 2002 at 5:19 pm
Aug 28, 2002 at 4:15 pm -
We've already used Python for CGI scripting in small projects and it worked well. We're now considering it for web projects with much higher hit rates. I'm a bit worried about how it will scale. Each ...
Dale Strickland-Clark
Aug 5, 2002 at 2:28 pm
Aug 6, 2002 at 5:42 pm -
When creating an embedded python in an RM/Cobol-85 interpretor, i have the following problem: It seems that i have to link all the modules (the .so's) that i need with the new dynamic link library, ...
Kim Petersen
Aug 12, 2002 at 1:50 pm
Sep 20, 2002 at 8:31 am -
I'm a little hesitant to say this, but today (while, of all things, putting a sales proposal together) I realised that my attitude to the "Red Hat comes with 1.5.2" question has now altered. When ...
Steve Holden
Aug 20, 2002 at 8:59 am
Sep 6, 2002 at 1:43 am -
I sometimes run into the problem of multiline comments destroying the look of my indentation: thisPrintsBad = """ Name: %(name)s age: %(age)s """ % vars() thisLooksBadInSource = """ Name: %(name)s ...
Max M
Aug 8, 2002 at 4:15 pm
Aug 20, 2002 at 12:34 pm -
I search an editor which can be extented using python. It should run under linux and have a graphical user interface. Heiko
Heiko
Aug 9, 2002 at 11:18 pm
Aug 14, 2002 at 5:29 pm -
Hallo python gods :-) I'm looking for a easy-to-use module which let's me draw some plots while a simulation coded in python is running and producing the data to be diplayed. Ideally the ...
Christian
Aug 6, 2002 at 2:42 pm
Aug 8, 2002 at 12:06 pm -
14
.pyc > .py ?
Hhmm, I'm afraid my editor ate up one of my modules... I don't know how, but the file is gone... I still have a compiled .pyc-version. So here is my question: is it possible to get back the source ...Matthias Huening
Aug 3, 2002 at 7:07 am
Aug 4, 2002 at 7:24 am -
13
Breaking Out
What is the polite way to skip to the end of a long if statement? if x ==y: blah blah blah blah blah blah I WANT OUT! blah blah blah blah SimonSimon Faulkner
Aug 23, 2002 at 7:04 pm
Aug 28, 2002 at 1:31 am -
I'm new to Python. I'm most comfortable with Java, but have done work in several other languages. So far Python has proven rather annoying to deal with. I'm trying to do a simple string comparison, ...
David Iungerich
Aug 21, 2002 at 4:51 pm
Aug 23, 2002 at 3:13 pm
Group Overview
group | python-list |
categories | python |
discussions | 833 |
posts | 4,879 |
users | 1,009 |
website | python.org |
1,009 user for August 2002
Archives
- September 2015 (591)
- August 2015 (1,058)
- July 2015 (1,440)
- June 2015 (1,704)
- May 2015 (1,841)
- April 2015 (1,231)
- March 2015 (1,717)
- February 2015 (1,612)
- January 2015 (889)
- December 2014 (1,283)
- November 2014 (1,600)
- October 2014 (1,447)
- September 2014 (1,031)
- August 2014 (1,867)
- July 2014 (1,618)
- June 2014 (1,357)
- May 2014 (1,431)
- April 2014 (1,285)
- March 2014 (2,093)
- February 2014 (1,999)
- January 2014 (2,089)
- December 2013 (2,060)
- November 2013 (2,507)
- October 2013 (1,932)
- September 2013 (1,634)
- August 2013 (1,532)
- July 2013 (2,062)
- June 2013 (2,795)
- May 2013 (1,935)
- April 2013 (1,980)
- March 2013 (1,953)
- February 2013 (1,789)
- January 2013 (1,924)
- December 2012 (1,569)
- November 2012 (1,579)
- October 2012 (1,961)
- September 2012 (2,311)
- August 2012 (1,808)
- July 2012 (1,577)
- June 2012 (1,199)
- May 2012 (1,197)
- April 2012 (1,416)
- March 2012 (1,373)
- February 2012 (1,442)
- January 2012 (1,446)
- December 2011 (1,895)
- November 2011 (1,291)
- October 2011 (1,188)
- September 2011 (1,587)
- August 2011 (2,069)
- July 2011 (2,140)
- June 2011 (1,908)
- May 2011 (2,475)
- April 2011 (2,098)
- March 2011 (1,761)
- February 2011 (1,746)
- January 2011 (2,123)
- December 2010 (1,671)
- November 2010 (2,355)
- October 2010 (2,518)
- September 2010 (2,187)
- August 2010 (3,098)
- July 2010 (2,579)
- June 2010 (3,238)
- May 2010 (2,458)
- April 2010 (2,356)
- March 2010 (2,759)
- February 2010 (3,486)
- January 2010 (3,294)
- December 2009 (2,899)
- November 2009 (3,396)
- October 2009 (3,346)
- September 2009 (3,087)
- August 2009 (3,903)
- July 2009 (3,761)
- June 2009 (3,321)
- May 2009 (3,370)
- April 2009 (4,272)
- March 2009 (4,228)
- February 2009 (3,965)
- January 2009 (4,732)
- December 2008 (4,335)
- November 2008 (3,799)
- October 2008 (4,123)
- September 2008 (3,816)
- August 2008 (4,056)
- July 2008 (4,238)
- June 2008 (3,737)
- May 2008 (4,976)
- April 2008 (4,708)
- March 2008 (4,122)
- February 2008 (4,132)
- January 2008 (4,145)
- December 2007 (3,686)
- November 2007 (3,419)
- October 2007 (4,234)
- September 2007 (4,332)
- August 2007 (4,189)
- July 2007 (3,771)
- June 2007 (4,142)
- May 2007 (5,018)
- April 2007 (4,912)
- March 2007 (4,365)
- February 2007 (3,951)
- January 2007 (3,864)
- December 2006 (4,449)
- November 2006 (4,229)
- October 2006 (5,506)
- September 2006 (5,244)
- August 2006 (4,829)
- July 2006 (4,720)
- June 2006 (5,054)
- May 2006 (5,302)
- April 2006 (4,845)
- March 2006 (5,729)
- February 2006 (4,839)
- January 2006 (5,249)
- December 2005 (5,011)
- November 2005 (5,677)
- October 2005 (5,387)
- September 2005 (4,458)
- August 2005 (4,428)
- July 2005 (4,472)
- June 2005 (4,562)
- May 2005 (4,269)
- April 2005 (5,019)
- March 2005 (5,070)
- February 2005 (5,159)
- January 2005 (5,194)
- December 2004 (5,211)
- November 2004 (4,048)
- October 2004 (5,191)
- September 2004 (5,534)
- August 2004 (6,168)
- July 2004 (4,217)
- June 2004 (4,202)
- May 2004 (3,890)
- April 2004 (4,285)
- March 2004 (5,077)
- February 2004 (4,213)
- January 2004 (3,988)
- December 2003 (3,818)
- November 2003 (4,940)
- October 2003 (6,297)
- September 2003 (4,299)
- August 2003 (5,654)
- July 2003 (4,912)
- June 2003 (4,933)
- May 2003 (4,938)
- April 2003 (5,017)
- March 2003 (5,031)
- February 2003 (7,701)
- January 2003 (6,229)
- December 2002 (4,102)
- November 2002 (4,346)
- October 2002 (3,307)
- September 2002 (4,206)
- August 2002 (4,919)
- July 2002 (4,826)
- June 2002 (4,215)
- May 2002 (5,295)
- April 2002 (5,967)
- March 2002 (5,323)
- February 2002 (5,245)
- January 2002 (5,617)
- December 2001 (4,443)
- November 2001 (4,565)
- October 2001 (3,669)
- September 2001 (3,719)
- August 2001 (5,208)
- July 2001 (6,528)
- June 2001 (4,905)
- May 2001 (5,492)
- April 2001 (4,713)
- March 2001 (4,478)
- February 2001 (3,871)
- January 2001 (4,187)
- December 2000 (3,099)
- November 2000 (2,336)
- October 2000 (3,820)
- September 2000 (3,933)
- August 2000 (4,253)
- July 2000 (4,199)
- June 2000 (4,089)
- May 2000 (4,269)
- April 2000 (3,217)
- March 2000 (3,719)
- February 2000 (4,000)
- January 2000 (2,682)
- December 1999 (2,283)
- November 1999 (1,896)
- October 1999 (2,048)
- September 1999 (2,001)
- August 1999 (2,151)
- July 1999 (2,351)
- June 1999 (2,386)
- May 1999 (2,201)
- April 1999 (1,706)
- March 1999 (6)
- February 1999 (1)