Search Discussions
-
I have been a 'C' programmer for the past 15 years and a "C++" programmer for the past 3 years. I'm not a genius but would modestly (?) class myself as reasonably competent. In the past week I have ...
Steve Mullarkey
Jun 9, 2000 at 5:12 am
Jun 19, 2000 at 9:51 am -
Consider this a heads up NOT a promotion!! In case you haven't heard Microsoft is coming out with a massive new Web stratagy that, in part, uses a new language called C# (That sharp, like in music). ...
Don Tuttle
Jun 27, 2000 at 1:10 pm
Jul 28, 2000 at 7:15 pm -
I was looking at the Ruby editor/IDE for windows and was disappointed with RubyWin, although it is definitely coming along. I noticed the smalltalk like immediate mode (Type code, hit ctrl-J, results ...
Warren Postma
Jun 14, 2000 at 3:56 pm
Jun 22, 2000 at 4:12 pm -
After using Python for a while I've come to the conclusion that using whitespaces to determine the begining and ending of blocks is bad for three reasons. Before I list those three reasons let me ...
Thaddeus L. Olczyk
Jun 17, 2000 at 7:49 am
Jul 10, 2000 at 10:06 pm -
Here's another "math through programming" challenge: Recent number theory breakthrough: you can get the nth digit of PI without doing all the work needed to compute all the digits up to the nth digit ...
Kirby Urner
Jun 5, 2000 at 7:34 pm
Apr 7, 2001 at 8:33 pm -
Fra: Ken Seehof [mailto:kens at sightreader.com] I believe that many factors is in play when considering how long time it takes coding in C/C++ vs. Python. C/C++ is probably more error prone due to ...
Max Møller Rasmussen
Jun 13, 2000 at 10:59 am
Jun 18, 2000 at 9:47 pm -
Let me preface my remarks with: --I am using the Python 1.2 binary for DOS with the Python 1.5.2 library which causes some problems. I avioded some problems by importing functions directly from strop ...
William Dandreta
Jun 18, 2000 at 11:32 pm
Jul 5, 2000 at 1:52 pm -
In many Perl vs. "other scripting language" discussions, I have often seen Perlers state that those who dislike Perl's syntax and structure are often non-Unix types, and thus are not used to common ...
Mkx
Jun 12, 2000 at 5:07 am
Jun 16, 2000 at 3:45 am -
Does Programming in Python Marginalize You? I love Python. Of the 10-15 programming languages I know, Python is the only language which I actually look forward to using. I wake up in the morning, ask ...
Richard P. Muller
Jun 6, 2000 at 4:32 pm
Jun 8, 2000 at 5:58 am -
Given the following directory structure, python/ AAA.py BBB/ __init__.py AAA.py if sys.path contains 'python', then from AAA import * from BBB.AAA import * would do the right thing at most locations, ...
Huaiyu Zhu
Jun 28, 2000 at 8:25 pm
Jul 3, 2000 at 6:34 am -
Does python have true and false values. I would like to do something like class A: def _init_(self): self.processed=false def process(self): self.processed=true at the moment I am using false=(1==0) ...
Thaddeus L. Olczyk
Jun 14, 2000 at 9:32 pm
Jun 28, 2000 at 4:04 am -
I have to create a tuple (of two integer values) in a C extension. At the moment I use the following (rather ugly in my eyes) construction: t = PyTuple_New(2); ...
Peter Schneider-Kamp
Jun 10, 2000 at 9:15 pm
Jun 15, 2000 at 9:09 pm -
I have a small project that I'm trying to develop in Python. Basically it's a GUI front end to a interactive text based program. So what I want to do is start the program, then send various strings ...
Tony Keating
Jun 24, 2000 at 2:38 am
Jul 1, 2000 at 6:06 am -
As promised, here is my patch to add augmented assignment (+=, -= and family) to Python. It's still Work In Progress, and probably requires a rewrite of some magnitude before Guido will accept it. ...
Thomas Wouters
Jun 9, 2000 at 2:39 pm
Jun 15, 2000 at 2:22 pm -
howdy all, i programmed a bit in BASIC as a kid, had a high school PASCAL class and i tried to pick up python before moving on to c++. however, i was trying to work my way through the book LEARNING ...
Jin choung
Jun 14, 2000 at 7:51 am
Jun 19, 2000 at 11:28 am -
I've got a Tkinter-based GUI interface used to do administrative stuff for a device driver under Linux. I know RedHat installs Python and Tkinter by default. Is there a handy list somewhere of which ...
Grant Edwards
Jun 13, 2000 at 3:49 pm
Jun 28, 2000 at 11:34 pm -
My wishlist for Python3K (This is not to start a flame war): 1. Everything is an object of a class that can be subclassed. 2. Augmentation operators: +=, *=, etc. Dot operators .*, ./, etc (for ...
Huaiyu Zhu
Jun 8, 2000 at 1:47 am
Jun 10, 2000 at 1:07 pm -
I am *brand* new to python (as of Sunday), and I just got to the section in the tutorial about classes. I was wondering why there really isn't such an idea as a "private" member of classes? I ...
Steve Juranich
Jun 28, 2000 at 6:02 pm
Jun 30, 2000 at 8:47 pm -
Well I've been getting my feet wet with "Python programming in Win32", a great book. I'm a long-time C/C++/VB/Assembler programmer and I must admit, I'm going to enjoy the "straightforwardness" of ...
Peter Immarco
Jun 15, 2000 at 3:38 am
Jun 19, 2000 at 2:39 pm -
22
Python 3000
Is there a link where I can look up what's being considered for Python 3000? TIAThaddeus L. Olczyk
Jun 17, 2000 at 7:49 am
Jun 22, 2000 at 3:35 pm -
GET: filename, headers = urllib.urlretrieve("http://my.host.name:8080/loginscript?%s" % urllib.urlencode({"param": value})) POST: filename, headers = ...
Oleg Broytmann
Jun 15, 2000 at 4:39 pm
Jun 16, 2000 at 9:00 pm -
Okay, 2 questions. Seem like basic enough functionality to be in pythonwin, but I dont see it. 1. How do you kill an infinite loop program without killing the pythonwin environment? 2. How can you ...
Jeff
Jun 8, 2000 at 9:19 pm
Jun 15, 2000 at 3:46 pm -
Is there a Python type like the C enum type? It can be very useful in making code more readable. Bill
William Dandreta
Jun 21, 2000 at 12:56 am
Jun 21, 2000 at 8:42 pm -
20
Palm Python?
Sorry if this is a FAQ - I haven't been following this group for a while, at least not as closely as I'd like. But rumors are that a Palm version of Python is pending, and as I'm looking for a ...Cees de Groot
Jun 2, 2000 at 3:26 pm
Jul 10, 2000 at 8:10 pm -
Has anyone done any extreme programming in python? Care to share your experiences? <http://www.extremeprogramming.org/index.html
Jerome Chan
Jun 15, 2000 at 2:31 am
Jun 19, 2000 at 1:39 am -
1st of all, cheers to everyone! I need to parse numbers coming from a file (made by a fortran program) the problem comes when parsing When I made some tests on the shell they went fine, like this: ...
Paolo Redaelli
Jun 3, 2000 at 8:41 pm
Jun 4, 2000 at 9:53 pm -
Hi all, When designing a class, I wrote some accessors (get_var() and set_var() methods) for my "private" members (private in the sense that I don't want somebody to access them directly from outside ...
Jerome Quelin
Jun 30, 2000 at 8:14 am
Apr 8, 2001 at 4:03 am -
Hi, I want to convince alot of my co-workers that OpenSource software, especially Python, is ready for big business. ( is it ?! ) How do I sell an OpenSource solution like Python to hardheaded ...
Thomas Weholt
Jun 20, 2000 at 11:35 am
Jun 26, 2000 at 9:53 pm -
Is there a Python module that has functions in it to manipulate Dbase tables and indexes? Bill
William Dandreta
Jun 20, 2000 at 1:51 am
Jun 24, 2000 at 5:41 pm -
I'd like to install Python for my younger brother (age 16) on the Windows machine that he uses. I've never installed Python on Windows, I'm not sure what components I need to prepare. I'd like him to ...
Hrvoje Niksic
Jun 9, 2000 at 7:57 pm
Jun 19, 2000 at 11:42 pm -
I wonder if Python runs faster than Perl. Could someone give me some comparison and contrast with some languages such as Perl, Tcl, JavaScript, etc? I am just curious. Thanks Akria
Akira Kiyomiya
Jun 15, 2000 at 4:47 pm
Jun 19, 2000 at 12:30 am -
hi, i've been working with python for the last week and have gone through the tutorial by guido. i have a few questions, and hope i will find help and enlightenment here... ~~ :-) a) Does Python ...
Arun_rajappa
Jun 5, 2000 at 2:34 pm
Jun 16, 2000 at 5:55 pm -
If one of the goals of Python 3000 is to make it easy for new programmers to learn, how about removing the distinction between = and ==? The only kinds of examples I can think of where this is useful ...
Lawrence Kesteloot
Jun 9, 2000 at 6:18 am
Apr 7, 2001 at 8:33 pm -
Hi. I'd love to take the diversion of writing Make using Python. The things that are keeping me from doing this are, in order: - I'm not completely convinced that doing this is a good thing - my ...
John Schmitt
Jun 17, 2000 at 6:01 am
Aug 14, 2000 at 3:03 pm -
in a mainstream-ish news article, no less... http://www.theregister.co.uk/content/1/11606.html when talking about C#, and it's relationship to Java... [snippity] And an even more cunning route was at ...
Anthony Baxter
Jun 27, 2000 at 2:06 pm
Jun 28, 2000 at 2:53 pm -
hi all i am very new to python and was wondering if it was capable of doing to the following and if so..how? the following is an example of what i need to strip and turn into a tab delimited file.. ...
Jason
Jun 13, 2000 at 5:49 am
Jun 16, 2000 at 11:41 pm -
Howdy. I'm interested in using Python within a commercial software package. Python's license seems to be really good about this, but I have a question about the copyright notice: Do the terms of ...
T_e_sanders
Jun 1, 2000 at 11:24 pm
Jun 4, 2000 at 3:01 am -
Hello, I am wondering if the 2.0 db api provides a method for returning a dictionary of results instead of a list ? Something like perl-DBI's fetch_hashref . I am using the latest MySQLdb and it ...
Jonan
Jun 23, 2000 at 7:47 pm
Jun 28, 2000 at 10:47 pm -
newbie question. has anyone wrote the 8 non-attacking queen problem and conway's game of life in python? i try but face a few newbie problems. 1. conway's game of life: how to have a matrix in ...
Root
Jun 15, 2000 at 2:44 am
Jun 17, 2000 at 5:07 pm -
1. For slice operations, ilow/ihigh indices which undeflow or overflow the list in question are reset to the edges of the list. Why was it that PyExc_IndexError wasn't thrown instead? 2. In slice ...
Courageous
Jun 4, 2000 at 8:19 pm
Jun 12, 2000 at 12:25 pm -
Hi all of you there! #This is my question AYS = "" def setEnviroment(): AYS = "NUMBER 9" def getEnviroment(): return AYS #This is the end... The function getEnviroment always return "". I guess AYS ...
Pablo Prieto
Jun 6, 2000 at 11:27 am
Jun 29, 2000 at 6:52 pm -
How would you go about testing if a certain file exists in python? In most scripting languages you have the -f test: if -f filename do whatever_you_were_going_to_do fi else do print "Error" file not ...
Thaddeus L. Olczyk
Jun 12, 2000 at 4:22 pm
Jun 13, 2000 at 7:23 am -
Well, at least _some_ people regard Ruby as a better OO Perl than Perl or as a means of getting anticipated Python 3000 features now. Maybe if you knew more about Ruby, you might become one of them. ...
Conrad Schneiker
Jun 7, 2000 at 10:32 am
Jun 12, 2000 at 3:44 am -
I see that Mark Hammond has gone to ActiveState. I'm interested to hear that they will be integrating Python into Visual Studio 7, but what does this all mean for the future of the PythonWin? Will ...
Tom
Jun 5, 2000 at 3:55 pm
Jun 8, 2000 at 10:21 pm -
Does anyone know of a Python MP3 Player? -- Curtis Jensen cjensen at bioeng.ucsd.edu http://www-bioeng.ucsd.edu/~cjensen/ FAX (425) 740-1451
Curtis Jensen
Jun 30, 2000 at 6:20 pm
Apr 8, 2001 at 3:12 am -
11
compilation
Hey people. I tried the FAQ, and I can't find this. I'm a Perl programmer exploring Python, and I'm wondering how to do a simple compile pass on python source to check syntax. In Perl, I'd just do a ...Michael P. Soulier
Jun 26, 2000 at 5:37 pm
Jul 3, 2000 at 7:59 pm -
Hi all, I was wondering how to pass variable-length keyworded arguments list to my base-class constructor? Look at the example code below: -- File test.py from Tkinter import * class F(Frame): def ...
Jerome Quelin
Jun 30, 2000 at 8:15 am
Jul 3, 2000 at 9:35 am -
Does anyone have any success stories (or gotchas) related to implementing a PostgreSQL database with Python that they'd like to share? I am hoping to use it as a back-end to a b2b web site. Technical ...
Robin Escalation
Jun 28, 2000 at 12:43 pm
Jun 30, 2000 at 6:20 pm -
Hmm, I'm very surprised you're needing to get down to this level when you're using something as "high level" as XML as your encoding. XML is so inefficient as a network protocol that most people ...
Mike Fletcher
Jun 14, 2000 at 3:42 am
Jun 26, 2000 at 8:14 pm
Group Overview
group | python-list |
categories | python |
discussions | 883 |
posts | 4,070 |
users | 978 |
website | python.org |
978 users for June 2000
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)