Search Discussions
-
OK, so its between the holidays and the newsgroup is quiet, so maybe I dare waste a little bandwidth with that most useless (but fun) commodity: gossip. How is Python doing popularity wise? After ...
Ron Stephens
Dec 27, 2001 at 3:58 am
Jan 12, 2002 at 1:55 am -
I'm trying to create a clever way to call a generator multiple times, but the only thing I've been able to come up with is: import random rgen = random.Random() def itemGenerator(dummy): return ...
Bruce Eckel
Dec 6, 2001 at 7:13 pm
Dec 10, 2001 at 6:17 pm -
A new forum for Python is up. It has a better feel to it than this forum (in my opinion) it is at ezboard at: http://pub19.ezboard.com/bthepythonmessageboard95602! ========= WAS CANCELLED BY =======: ...
Andrew Nguyen
Dec 27, 2001 at 6:38 am
Jan 1, 2002 at 9:37 pm -
I am a long-time Windows developer who is trying to migrate to Linux for several reasons. But this doesn't come naturally to me :-) And some of the things about Linux I really like, others are a ...
Maxm
Dec 21, 2001 at 10:25 pm
Jan 7, 2002 at 7:15 am -
Hi. I've been reading some of the catalog-sig archives and I wonder why the interest of the community about something like CPAN is so small. When a message about this thing pops up in c.l.py, it ...
Walter Moreira
Dec 8, 2001 at 3:11 am
Dec 21, 2001 at 4:28 pm -
there seems to be lots of stuff that refrences python 1.5.x or requires it but he www.python.org website doesn't mention it at all. what is the deal? what are people using? it seems to me that python ...
Angus Mackay
Dec 13, 2001 at 2:18 am
Jan 2, 2002 at 11:35 pm -
I am a high school senior, and like many others, I am applying to college. I am applying to MIT (as well as many other schools). MIT describes what they are looking for as students who do or have ...
Jesse F. W
Dec 29, 2001 at 9:29 pm
Dec 31, 2001 at 3:24 am -
Hello, I'm a python newbie interested in using stackless python to support hundreds of simulation objects for a game. I've checked out various articles and it sounds great, and I've visited ...
John DeWeese
Dec 19, 2001 at 8:30 am
Aug 4, 2002 at 1:48 am -
Hi, I am running redhat 7.2 and installed the following: python2.2-2.2b1-2.i386.rpm python2.2-devel-2.2b1-2.i386.rpm python2.2-tools-2.2b1-2.i386.rpm When trying to run a script, I get the following ...
Ddidierd78
Dec 16, 2001 at 6:25 pm
Jan 3, 2002 at 12:52 am -
hello, This is the first draft of a PEP to introduce a high level date class in python standard library. I have highlighted by [???] the points that I'm not sure. Of course that doesn't mean that the ...
Sebastien
Dec 6, 2001 at 11:46 am
Jan 29, 2002 at 8:42 pm -
Hi all, I am fairly new to Python, in the sense that I haven't written anything substantial in it, although I have gone through all the major books so far. Coming from a strong, industrial strength ...
Sarat Venugopal
Dec 21, 2001 at 8:53 am
Jan 6, 2002 at 4:31 pm -
David Rush <kumo at bellsouth.net wrote in message news:<okfg064ugsh.fsf at bellsouth.net ... [...] Your extreme pathologic response clearly demonstrates the problem with the small, fundamentalist ...
New Scheme
Dec 22, 2001 at 9:02 am
Jan 4, 2002 at 4:37 am -
"Oren Tirosh" <oren-py-l at hishome.net wrote in message news:mailman.1007298422.20078.python-list at python.org... I don't see what I could do with this that I couldn't do with the '%' operator. ...
John Roth
Dec 2, 2001 at 11:21 pm
Dec 10, 2001 at 6:07 am -
hello has anybody already read the book "python programming patterns" published by prentice hall. I thought this would be about design patterns in python but the review at amazon says different ...
Markus Jais
Dec 22, 2001 at 10:33 am
Jan 7, 2002 at 8:51 pm -
[In this and other somewhat related threads] Some people have (in different words) lamented the "language fork" (as it were) with respect to providing the major dynamic OO alternative to Perl (and ...
Conrad Schneiker
Dec 29, 2001 at 8:47 pm
Jan 3, 2002 at 4:11 pm -
It is readily apparent from the PEP 276 thread that while the author has tried his best to do the tedious, dirty work of showing the modest benefits of the modest proposal actually contained in PEP ...
James_Althoff
Dec 4, 2001 at 12:04 am
Dec 17, 2001 at 6:46 pm -
I've used win32all occasionally--always in noncommercial settings--and have found it helpful. I'd like to thank Mr. Hammond for developing the packages and ActiveState for supporting their recent ...
Stalin
Dec 22, 2001 at 5:16 am
Dec 31, 2001 at 8:44 am -
"A. Keyton Weissinger" <keyton at weissinger.org wrote in message news:<mailman.1009576773.10059.python-list at python.org ... Keyton, you raise a very good point. Right now, I CAN'T help even if I ...
Bill Tate
Dec 29, 2001 at 10:11 pm
Jan 4, 2002 at 5:03 pm -
A new message board (that doesn't have the Usenet delay) is up! Xutilla is the admin. it is at http://pub19.ezboard.com/fthepythonmessageboard95602frm1 Hope to see you!
Andrew Nguyen
Dec 27, 2001 at 6:32 am
Dec 28, 2001 at 3:16 am -
I am about to slowly transfer out of my newbie status, and I am going to purchase a Programming Python Book (an upgrade from learning python) and I wanted to know if anyone knows whether Oreilly will ...
Pythongeek
Dec 17, 2001 at 2:16 am
Jan 15, 2002 at 8:31 am -
I am new to python (about 72 hours into learning), and am having problems with reading a file (sate abbreviations) with one item per line and populating each line into a list. The problem is that ...
Mlorfeld
Dec 9, 2001 at 10:04 pm
Dec 16, 2001 at 3:42 pm -
There are some Python modules that deserve to be more widely known outside of the Python community, because they're such handy timesavers. My list of modules that don't get enough publicity would ...
Andrew Kuchling
Dec 14, 2001 at 4:31 pm
Dec 21, 2001 at 7:25 am -
I've been trying to figure out the canonical way to strip the line endings from a text file. In general, I can use: line = line[:-1] or del line[-1:] to strip the last character off the line, but ...
Tim Hammerquist
Dec 16, 2001 at 2:21 pm
Dec 18, 2001 at 8:20 pm -
How to wrap a C function which takes variable lengthed parameter? Any one has such experience? Thanks.
{-- Rot13 - Hateme
Dec 14, 2001 at 6:07 am
Dec 18, 2001 at 1:06 am -
If I have: class Flower: def accept(self, visitor): visitor.visit(self) def __repr__(self): return self.__class__.__name__ class Gladiolus(Flower): pass Flower.gladiolus = Gladiolus() class ...
Bruce Eckel
Dec 6, 2001 at 7:56 pm
Dec 12, 2001 at 6:22 pm -
Can python be more strict about declarations? I didn't see a flag to the interpreter, and haven't seen anything yet in my book or on www.python.org. I ask because I got burned by something like this: ...
Brian Sturk
Dec 7, 2001 at 5:45 am
Dec 11, 2001 at 5:42 am -
I have made a new win32all release for Python 2.2. Hrmm - it seems I can't login to starship :( So I have temporarily placed it at: http://users.bigpond.net.au/mhammond/win32all-141.exe The only new ...
Mark Hammond
Dec 29, 2001 at 4:28 am
Jan 7, 2002 at 6:00 pm -
i've written a portable serial port library. it runs now on linux and win32 (using marks win32all) but i would like to make it compatible with more unix like platforms. basicaly it should run on any ...
Chris Liechti
Dec 29, 2001 at 8:49 pm
Dec 31, 2001 at 2:28 am -
I have been happily using a list of dictionaries to hold table data for years. For the first time, this method is proving less than efficient because of the amount of memory overhead the dictionaries ...
Bill Wilkinson
Dec 18, 2001 at 11:58 pm
Dec 21, 2001 at 11:54 pm -
Does anybody know if there are modules to generate XML? I know there is SAX, but it is only for parsing, isn't it? Thank. Fab
Fabrizio
Dec 20, 2001 at 1:10 pm
Feb 14, 2002 at 1:51 pm -
Does anyone have a readily-portable equivalent to the pythoncom.CreateGuid() function? regards Steve -- http://www.holdenweb.com/
Steve Holden
Dec 13, 2001 at 3:28 am
Jan 13, 2002 at 4:53 pm -
hi, I'm a beginner to python and try to understand some basic stuff. Hier are two function defenitions , which look the same for me, but the second one does not work. Can anybody explain why? def ...
Husam
Dec 22, 2001 at 3:40 pm
Dec 31, 2001 at 7:19 pm -
hello I saw at soapware.org, that there are at least 2 SOAP implementations for python supporting both client and server development. one is SOAP.py in version 0.97 from Cayce Ullman and Brian ...
Markus Jais
Dec 13, 2001 at 1:40 pm
Dec 17, 2001 at 11:54 pm -
I've uploaded a new version of ciphon to sourceforge.net and to anonymous ftp at ftp.community.tummy.com. The recent changes to ciphon are: Ciphon now supports distutils so it can be updated from ...
Suchandra Thapa
Dec 18, 2001 at 4:45 pm
Jan 3, 2002 at 4:58 pm -
Hello out there. A few quick questions: Was my "Call" to inpolite? Was it the wrong place / newsgroup to ask? I just wonder, because there wasn?t even a reaction like "Go away" or "Plonk / Killfile" ...
Tom Karas
Dec 29, 2001 at 6:37 pm
Dec 29, 2001 at 11:27 pm -
So I'm using IDLE, and Alt-F5 tells me I have a problem with indentation. It seems I had (inadvertently) mixed tab and space characters. No amount of "tabbifying" and "untabbifying" resolved the ...
David Dawkins
Dec 14, 2001 at 3:09 am
Dec 23, 2001 at 1:49 am -
Can anyone say fairly definitively whether there are known socket communication problems in cygwin with Python 2.1.1-2 (the latest version ported by Jason Tishler). My asynchat-based web server runs ...
Steve Holden
Dec 17, 2001 at 10:57 pm
Dec 19, 2001 at 4:23 pm -
Here's an example. In the Python FAQ, there's a reference (no URL) to a document: 5.1. Can I create my own functions in C? Yes, you can create built-in modules containing functions, variables, ...
Bruce Eckel
Dec 8, 2001 at 9:28 pm
Dec 9, 2001 at 6:28 pm -
GAAAAAH! It doesn't exist yet! I want to say something bitter, like "Python is dead to me," but saying "Python 2.2 is as yet unborn to me" just comes off wobbly and obtuse. Mark, I recall a poster I ...
David Brady
Dec 28, 2001 at 7:09 pm
Dec 30, 2001 at 3:02 am -
I'm running Python 2.1 on Windows NT, and I'd like to use socket SSL. I see that socket.py and socketmodule.c both contain support for SSL sockets, but this does not appear to be compiled into my ...
Michael Abbott
Dec 7, 2001 at 11:49 am
Dec 29, 2001 at 11:23 pm -
I've gotten ciphon to the point where I tihnk it's ready for beta testing and am looking for people willing to help test it. Currently ciphon has readline support, dependency handling, automatic ...
Suchandra Thapa
Dec 14, 2001 at 12:45 am
Dec 20, 2001 at 2:44 am -
Just curious. What's going on here? A mailman bug from the mail <- news gateway, or somebody coverage-testing their Mozilla?! Gerhard -- mail: gerhard <at bigfoot <dot de registered Linux user #64239 ...
Gerhard Häring
Dec 31, 2001 at 6:18 am
Jan 2, 2002 at 7:13 pm -
Hi, As was remarked earlier in this thread, a measure of Python's popularity, if not quality, can be obtained by looking at the number of sourceforge projects using Python. Below you'll find a number ...
Roeland Rengelink
Dec 29, 2001 at 12:25 pm
Dec 31, 2001 at 11:38 am -
Is it possible to force a directory mentioned in a .pth file to be inserted at the beginning of sys.path instead of appended to the end? Thx, -- Skip Montanaro (skip at pobox.com - ...
Skip Montanaro
Dec 28, 2001 at 2:35 pm
Dec 28, 2001 at 11:15 pm -
The development version of the documentation has been updated: http://python.sourceforge.net/devel-docs/ Added documentation for the ScrolledText module.
Fred L. Drake
Dec 3, 2001 at 9:25 pm
Dec 28, 2001 at 6:46 pm -
There is one thing I envy Perl programmers: they have several nice looping constructs and Python has almost none. For exmaple redo unless can be nice sometimes and they have several others. What do ...
Janos Blazi
Dec 23, 2001 at 12:53 pm
Dec 25, 2001 at 12:26 am -
If this is not a bug in % string formatting, I'd love to understand what is going on. The example code is: names = {'John' : ('John Doe','jodoe at nowhere'), 'Jane' : ('Jane Doe','jadoe at nowhere'), ...
Fernando Pérez
Dec 19, 2001 at 2:12 pm
Dec 21, 2001 at 7:36 pm -
Hi, I am a biochemist using computer programming mainly for data analysis, and a Python fan. Now I have faced a different task, automating text reports. For this task I need a MS-Word-like text ...
Enrique
Dec 17, 2001 at 11:50 am
Dec 19, 2001 at 7:22 pm -
I've reimplemented the synchronization objects of threading.py in non-portable, Win32-only C. The C versions of RLock, Event, Semaphore, and Condition perform at least 5x faster than their standard ...
Jason Orendorff
Dec 21, 2001 at 7:49 am
Jan 7, 2002 at 5:20 pm -
I use sqlite as my database server and create a database with it, in which contains Unicode(Chinese) char. When I use Chinese platform, the Chinese char can be displayed correct in my winsql windows ...
Kick
Dec 17, 2001 at 1:03 pm
Dec 30, 2001 at 2:24 pm
Group Overview
group | python-list |
categories | python |
discussions | 859 |
posts | 4,435 |
users | 991 |
website | python.org |
991 users for December 2001
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)