Search Discussions
-
This is somewhat a NEWBIE question... My company maintains a small RDBS driven website. We currently generate HTML using PHP. I've hacked a bit in Python, and generally think it is a rather cool ...
Erik Johnson
Feb 27, 2004 at 8:50 pm
Mar 8, 2004 at 2:40 pm -
In different articles that I have read, persons have constantly eluded to the productivity gains of Python. One person stated that Python's productivity gain was 5 to 10 times over Java in some in ...
Kbass
Feb 15, 2004 at 2:53 am
Feb 20, 2004 at 10:46 pm -
Why can't we have an additional 'print' statement, that behaves exactly like 'print' but doesn't insert that damn blank between two arguments? Could be called 'printn' or 'prin1' or 'prinn' anything ...
Martin Bless
Feb 28, 2004 at 11:56 am
Mar 6, 2004 at 7:08 pm -
Hi I don't have to talk about the beauty of Python and its clear and readable syntax... but there are a few things that striked me while learning Python. I have collected those thoughts. I am sure ...
Marco Aschwanden
Feb 24, 2004 at 11:11 am
Feb 26, 2004 at 8:40 am -
I'm rather new at this, so I don't know how I should introduce this, nor whether these ideas are worth much but here goes. What I would like to change is access to variables on an intermediate scope. ...
Antoon Pardon
Feb 24, 2004 at 3:53 pm
Mar 5, 2004 at 9:15 am -
I've just spent several very frustrating hours tracking down a bug in one of my programs. The problem was that I was writing text to a file, and when I was done I coded f.close when I should have ...
Stephen Ferg
Feb 11, 2004 at 3:01 pm
Feb 13, 2004 at 4:51 pm -
PEP 315 suggests that a statement such as do: x = foo() while x != 0: bar(x) be equivalent to while True: x = foo() if x == 0: break bar(x) I like the overall idea, but wonder about the extra ...
Andrew Koenig
Feb 18, 2004 at 5:18 am
Feb 24, 2004 at 7:14 pm -
How does Ruby compare to Python?? How good is DESIGN of Ruby compared to Python? Python's design is godly. I'm wondering if Ruby's is godly too. I've heard it has solid OOP design but then I've also ...
Christian Seberino
Feb 24, 2004 at 10:43 pm
Mar 2, 2004 at 2:28 am -
This is an excerpt from a much longer post on the python-dev mailing list. I'm responding here, to avoid cluttering up python-dev. [Fran?ois Pinard] <snip </snip Monglot English speakers, like me, ...
Doug Fort
Feb 9, 2004 at 6:52 pm
Feb 14, 2004 at 11:53 pm -
Just fooling around this weekend. Wrote and timed programs in C, Perl and Python. Each Program counts to 1,000,000 and prints each number to the console as it counts. I was a bit surprised. I'm not ...
Bart Nessux
Feb 29, 2004 at 5:44 pm
Mar 3, 2004 at 2:15 am -
Hello All, Which news reader do you recommend? Currently I use Google Groups and find it a bit to dull. Thanks. Miki
Miki Tebeka
Feb 3, 2004 at 9:09 pm
Feb 9, 2004 at 10:22 am -
Hi, I got a class A2 that needs to inherit from class A1. A2, as well as some other classes implement a same functionality and in order to prevent code duplication I'd like to factorize that ...
Uwe Mayer
Feb 1, 2004 at 6:48 pm
Mar 4, 2004 at 11:27 am -
I wonder about the huge traffic in the question how many tuples are dispensible. I find that a question of only ternary or quarterny order - use it or use it not (free after Shakespears "to be or not ...
B-blochl
Feb 25, 2004 at 3:53 pm
Feb 29, 2004 at 3:48 am -
Hi all! I learned Python as part of my university coursework... I enjoyed it. Now I'm just wondering how Python compares with asp, jsp, php and what not?? I don't have slightest knowledge about these ...
Ben
Feb 5, 2004 at 1:05 pm
Feb 10, 2004 at 6:52 pm -
Hi, I have the following inter-class relationships: __main__: (in file LMCMain.py) imports module FileIO defines class LMCMain instanciats main = LMCMain(...) FileIO.py: defines class FileIO class ...
Uwe Mayer
Feb 7, 2004 at 12:16 pm
Feb 12, 2004 at 8:49 pm -
Two observations about PEP-315: 1. It's clever, addresses a definite "wart", and is syntactically similar to try/except. But it's syntax seems like an acquired taste to me. 2. It is a very general ...
Wayne Folta
Feb 17, 2004 at 2:21 am
Feb 19, 2004 at 9:41 pm -
Howdy all, Just when we thought things were looking up on the whole "Windows as a trademark" for something that Microsoft didn't originate in the first place. The wxWindows project have announced ...
Ben Finney
Feb 24, 2004 at 3:21 am
Mar 2, 2004 at 9:08 am -
I'm doing a small program, in which the user will have the option to enter his/her password everytime, or just save it (to a file). So, is there a module to obscure the password text in a secure way? ...
Batista, Facundo
Feb 26, 2004 at 1:10 pm
Feb 27, 2004 at 3:06 pm -
It's interesting that most of us have shared a similar "language path". Personally mine is [mainly]: BBC BASIC (the best BASIC, dont' get me started on QBasic/VB!) ARM Assembly (damn, no divide, but ...
Simo
Feb 18, 2004 at 7:12 pm
Feb 25, 2004 at 11:16 pm -
By using lists, I can create sets of number. Suppose I have three lists. One list is the super-set, one is a set that contains all the numbers (just like the super-set) and the last is sub-set of the ...
Bart Nessux
Feb 11, 2004 at 8:49 pm
Feb 17, 2004 at 9:43 pm -
Hi, I have a problem with a small python program I'm trying to write and I hope somebody may help me. I'm working on tables of this kind: CGA 1988 06 21 13 48 G500-050 D 509.62 J.. R1 1993 01 28 00 ...
Robsom
Feb 7, 2004 at 8:08 pm
Feb 13, 2004 at 1:12 pm -
Ummmm... This is weird. Sorry if it's known about (how can it NOT be, I wonder?) but I haven't seen any reference to it anywhere. I'm running the latest Python (2.3.3) on Windows XP Pro, i386 ...
Dan Williams
Feb 5, 2004 at 5:44 pm
Feb 8, 2004 at 7:00 am -
Does anyone know of a framework or library that will enable me to use publish/subscribe comms? I want to create a server (using Python) running on a Unix box that will accept client connections (from ...
Adrian B.
Feb 28, 2004 at 10:18 am
Mar 2, 2004 at 5:30 am -
I'm having trouble executing Python scripts in IIS. I have the error message "%1 is not a valid Win32 application". Anyone know what this is about? Jon Cosby
Jon Cosby
Feb 23, 2004 at 6:34 pm
Feb 27, 2004 at 11:28 pm -
Aloha, i wanted to ask another problem, but as i started to build an example... How to generate (memory and time)-efficient a string containing random characters? I have never worked with generators, ...
Andreas Lobinger
Feb 19, 2004 at 3:23 pm
Feb 20, 2004 at 6:57 pm -
I understand that most people write functions to reuse code, no? So, I assume it would be better to write functions that are very specific, as opposed to those that are more generic. However, I have ...
Bart Nessux
Feb 10, 2004 at 2:22 am
Feb 11, 2004 at 1:30 am -
I have written this function, "choose_by_probability()" It takes a list of probabilities in the range 0.00-1.00, and it must then randomly select one of the probabilities and return it's index. The ...
Max M
Feb 2, 2004 at 1:15 pm
Feb 6, 2004 at 7:09 pm -
I have read with interest the recent thread about closures. The funny thing is that the authors are arguing one against the other but I actually agree with all of them and I have a proposal that may ...
Michele Simionato
Feb 27, 2004 at 5:58 am
Mar 2, 2004 at 3:29 pm -
Is there any way to make the class Z behave the same way as class Y? Chris class Y: value = 42 def __hasattr__(self, name): if name == '__int__': return True def __getattr__(self, name): if name == ...
Chris
Feb 28, 2004 at 11:33 am
Mar 1, 2004 at 11:34 am -
I use this simple test in Python: def foo(i): print i foo(i+1) import sys sys.setrecursionlimit(1000000) foo(0) Now, my understanding is that I get the segfault when Python overruns the C stack. ...
Maciej Kalisiak
Feb 5, 2004 at 4:34 am
Feb 12, 2004 at 6:51 am -
Hi My son like many youngsters been around computers, fast online games, he acturly for main part learned to read and write ,beside his second language english , and may I say he is quite good at it ...
P.C.
Feb 8, 2004 at 2:35 pm
Feb 9, 2004 at 11:12 pm -
Hi, is it possible to protect the python sourcecode? I have a nice little script and i dont want to show everbody the source. Im using python on a windows pc. Thank you - Mark
Mark Buch
Feb 5, 2004 at 3:05 pm
Feb 11, 2004 at 11:08 am -
I have some minor complaints about the Python language, and I'm interested to know how other people feel about them. Here they are: 1) I find the following behavior puzzling and disappointing: False ...
Elaine Jackson
Feb 4, 2004 at 5:18 pm
Feb 7, 2004 at 12:58 pm -
Oh, interesting! I'm sporadically working on a Slashdot clone, so this sort of thing is a concern. As a result I've poked around in the Slashdot SQL schema and page design a bit. Skipping ahead: ...
A.M. Kuchling
Feb 1, 2004 at 3:46 am
Feb 3, 2004 at 1:13 am -
14
Typecasting
Others have answered with "int". You should also wrap that with an exception handler, because your string might not actually be a number. x=raw_input("Enter number") #actually got "one" try: y=int(x) ...Harry George
Feb 23, 2004 at 7:55 am
Mar 4, 2004 at 10:13 pm -
Does anyone know of any HTTPS servers available that are totally written in Python? Thanks.
Mikey
Feb 26, 2004 at 9:56 pm
Mar 2, 2004 at 12:57 am -
I have a problem writing self-testable modules using doctest when these modules have internationalized strings using gettext _('...'). - The main module of an application (say app.py) calls ...
Pierre Rouleau
Feb 27, 2004 at 4:12 am
Feb 27, 2004 at 10:29 pm -
It appears that xmlrpclib and/or SimpleXMLRPCServer always use new connections for each request. I have been trying to make them reuse the existing connection but can't find where. Is there any ...
Roger Binns
Feb 17, 2004 at 8:26 am
Feb 26, 2004 at 4:38 pm -
Hi, I need to create a parser for a Python project, and I'd like to use process kinda like lex/yacc. I've looked at various parsing packages online, but didn't find anything useful for me: - PyLR ...
Viktor Rosenfeld
Feb 20, 2004 at 5:17 pm
Feb 24, 2004 at 6:55 pm -
I have written a new debugger. I think people will find it useful. Where can I post it for people to download? Thanks, Nir The new MSN 8: smart spam protection and 2 months FREE* ...
Ziaran _
Feb 22, 2004 at 12:46 pm
Feb 23, 2004 at 11:02 pm -
Hi, I have today seen only 5 mailing list messages to the python-list. I see 30 messages in c.l.py newsgroup. Do other people experience problems as well, or do I have a problem at my end? Gerrit. -- ...
Gerrit
Feb 14, 2004 at 10:18 pm
Feb 18, 2004 at 8:13 pm -
I'm about to tackle tkinter, but here's the thing: The only kind of GUI I want to work on is a chessboard (an 8x8 grid of images that can be "moved around"). So before I start, I'm asking the room at ...
Elaine Jackson
Feb 13, 2004 at 3:46 pm
Feb 15, 2004 at 8:09 pm -
Here is the situation: I want my server started up upon connection. When the first connection comes in, the server is not running. The client realizes the fact, and then starts up the server and ...
Fortepianissimo
Feb 10, 2004 at 4:54 pm
Feb 13, 2004 at 4:45 pm -
Hi, a new version of PyCrash is released with some bug fixes done. You can download it at https://sourceforge.net/project/showfiles.php?group_id�026&package_id5002 Enjoy! About PyCrash Project: ...
Carmine Noviello
Feb 5, 2004 at 6:29 pm
Feb 9, 2004 at 10:25 pm -
This article at the BBC reports on what appears to be a genetic algorithm or random search method for finding words that apparently fool bayesian classifiers every time. ...
Robin Becker
Feb 5, 2004 at 9:09 am
Feb 8, 2004 at 6:37 am -
Copying ------- To copy lists and dictionaries, the traditional idioms were l=mylist[:] and d=mydict.copy(). When some of the builtin functions became types, a more consistent approach became ...
Raymond Hettinger
Feb 29, 2004 at 10:18 am
Mar 2, 2004 at 9:03 pm -
OK, I tried a Google search on this Usenet group but couldn't find a solution, so I'm posting my question here (if there's a better archive than the one in Google, please let me know). Does anybody ...
Woojay Jeon
Feb 27, 2004 at 8:00 am
Mar 2, 2004 at 7:32 pm -
<vent I see there has been traffic over the years on this gripe, so just let me vent my frustration, and add another reason why 'exit' (or possibly exit() or quit() or halt() or some such) should ...
Mike Maxwell
Feb 23, 2004 at 8:12 pm
Feb 26, 2004 at 1:48 am -
Hi ! I am a poor mortal who has become terrified of Python. It seems to have thrown all the OO concepts out of the window. Penniless, I ask a basic question : What is the difference between a class ...
Gaurav Veda
Feb 21, 2004 at 4:57 pm
Feb 22, 2004 at 8:26 am -
Dear all, Are there any utility that can be call by python to create self extracting zip file. I'm now using the powerarchiever. But the command line options aren't flexible enough. Basically, I ...
Calvin FONG
Feb 16, 2004 at 11:53 am
Feb 19, 2004 at 2:36 pm
Group Overview
group | python-list |
categories | python |
discussions | 911 |
posts | 4,150 |
users | 995 |
website | python.org |
995 users for February 2004
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)