Search Discussions
-
Sometimes, when writing code, I find it would be nice if there were a "do...until" construct in Python. This would be preferable to using a "while" construct if you wanted to make sure the loop will ...
Ken Peek
Apr 16, 2001 at 4:44 am
May 11, 2001 at 5:34 am -
ActiveState Corporation <http://activestate.com/ produces an multi-language/multi-platform IDE called Komodo, which is based on the Mozilla framework. It is a nice product, overall, based on my tests ...
Lulu of the Lotus-Eaters
Apr 10, 2001 at 6:57 pm
Apr 23, 2001 at 4:46 pm -
Okay, okay, but I still have to ask. Why isn't there a conditional operator (a ? b : c) in Python? 2.0 now has augmented assignments, and the FAQ even acknowledges that the conditional operator is ...
Erik Max Francis
Apr 1, 2001 at 2:04 am
Sep 7, 2001 at 10:10 pm -
Now that there are so many Python books out or in the pipeline it is more pleasant than discouraging to do some gap analysis. Here are some books that I am looking forward to looking forward to: ...
Tim Randolph
Apr 4, 2001 at 5:29 am
Apr 19, 2001 at 2:37 am -
I have a couple of questions regarding the new Python garbage collector: (1) Why does it use the rather unusual algorithm it does, rather than a more typical mark and sweep? The per-object storage ...
Douglas Alan
Apr 2, 2001 at 10:28 pm
Apr 25, 2001 at 8:47 pm -
Python is an ugly language... Why should you have to name stuff with __*__ to get some pseudo hiding? Or for any reason for that matter... Why do you always have to access class data members as ...
Luke
Apr 17, 2001 at 10:08 pm
Apr 27, 2001 at 5:25 pm -
This benchmark is actually a reasonable test of compiler (loop) optimization and integer numerics optimizations. On a 1.2GHz Athlon processor with: 512 MB memory Dual Raid ATA 100 IBM Hard drives ...
David Simmons
Apr 24, 2001 at 1:26 am
May 4, 2001 at 5:38 am -
Since self is used for every method of every class, isn't it a bit redundant? I don't know of another OO language that makes you manually carry around the "this"/"self" pointer/reference... Of course ...
Dave LeBlanc
Apr 18, 2001 at 8:10 am
Apr 21, 2001 at 12:10 am -
Hello All, Preobebly missed it somewhere. Is there a discussion/sugesstion about enabling named code blockes (like lisp, perl ...) in Python? Thanks. Bye. ...
Miki Tebeka
Apr 12, 2001 at 12:58 pm
May 3, 2001 at 9:08 pm -
I am new to Python and I just read something that I thought was peculiar. Is it true that a user can add to the variables of a class just by naming the new variable? Like: ClassObject.var1=5 Would ...
Robert Johnson
Apr 9, 2001 at 2:33 pm
May 3, 2001 at 12:24 am -
50
PEP 245
I know I am going to get hate mail for this, but I have to get it off my chest! I would like to get a few questions answered: 1. What is the point of interfaces without static typing? All that a ...Alex Shindich
Apr 1, 2001 at 8:21 am
Apr 12, 2001 at 6:42 pm -
Umbra is a computer role-playing game written in Python, similar to Alternate Reality and Bard's Tale, with influences from roguelike games and console RPGs, and set in a universe of Lovecraftian ...
Mark 'Kamikaze' Hughes
Apr 17, 2001 at 3:14 am
May 23, 2001 at 9:21 pm -
There are some signs :-) that Python's object model is going to be revised even _before_ Python 3000. Is someone willing to join me fighting for class methods (I mean 'real' class-methods in the ...
Thomas Heller
Apr 20, 2001 at 3:05 pm
Apr 28, 2001 at 11:08 am -
I think ActiveState's Komodo tool is very poorly designed. It is real slow and even harder to use. I dont understand why they didnt take something like PythonWin (a much better IDE) and enhance it? ...
Costas Menico
Apr 10, 2001 at 1:03 am
Apr 16, 2001 at 3:42 pm -
PythonLabs Team Moves to ActiveState To all Python users and developers: Less than half a year ago, I moved with my team to Digital Crations, in the hope of finding a new permanent home for Python ...
Guido van Rossum
Apr 1, 2001 at 12:54 am
Apr 3, 2001 at 10:08 pm -
A bunch of us were discussing the new Parrot syntax (i.e things like "left_angle_bracket_right_angle_bracket") today and came up with a great idea for a new language syntax, which mixes the best ...
Roy Smith
Apr 7, 2001 at 2:17 am
Apr 18, 2001 at 7:08 pm -
We found and fixed a rare but serious bug in the dictionary code, and fixed enough small nits to warrant a second release candidate for Python 2.1 -- the final release is still planned for Tuesday, ...
Guido van Rossum
Apr 16, 2001 at 3:44 am
Apr 23, 2001 at 3:33 pm -
OK-- In MY new language (NOT Python, but a new language "in the nature of" Python): I would make the "do/until" syntax like this: do: # some stuff # some more stuff until condition The "until" line ...
Ken Peek
Apr 17, 2001 at 6:02 am
Apr 18, 2001 at 8:47 pm -
As you all know, Moshe Zadka has been pushing for a new rational number type recently (at the conference) and also implemented a proof- of-concept implementation of his rational PEP 239. Since the ...
M.-A. Lemburg
Apr 19, 2001 at 7:04 pm
Apr 26, 2001 at 6:36 pm -
Hi folks, I have seen the GUI wars here, and have for the most part ignored them. I am now in a situation where I need input. We have a project that involves a simple GUI--at the moment-- that will ...
Timothy Grant
Apr 19, 2001 at 10:08 pm
Apr 24, 2001 at 2:05 am -
Hi, I think I am running into a problem with scope, but I am not sure. I have a global variable CurrentCanvasSetting. This is set to first set to 'init'. I then have two class instances, one for a ...
Brian Elmegaard
Apr 5, 2001 at 7:41 am
Apr 11, 2001 at 6:13 pm -
Being lazy, I wondered if something like the following was possible in Python? jim=person() Rather than typing jim each time, jim.born60 jim.haircolour='Brown' jim.eyecolour='Green' Have a "with" or ...
Tim Howarth
Apr 17, 2001 at 8:16 am
May 1, 2001 at 11:08 am -
I've been recently working on a agent-based simulation system which is intended to run with massive numbers of threads in the 15,000-30,000 range. In my initial prototype of the system, I selected ...
Courageous
Apr 15, 2001 at 8:26 pm
Apr 26, 2001 at 1:34 pm -
Howdy, I just sent in the patch to fix up all the Python sources to let it compile from the Borland free compiler or C++Builder. This leaves two issues remaining before I put up the ...
Stephen
Apr 23, 2001 at 7:06 am
Apr 26, 2001 at 12:44 pm -
We are pleased to announce ActivePython 2.1 (build 210), a distribution of Python 2.1. http://www.activestate.com/ASPN/Downloads/ActivePython/ ActivePython contains a superset of the functionality ...
Paul Prescod
Apr 19, 2001 at 9:51 pm
Apr 23, 2001 at 5:46 pm -
Caught this following the link on Slashdot concerning a trip report about the last Smalltalk conference: http://www.smalltalkconsulting.com/html/SmalltalkSolutions2001%232.html Anyone here have any ...
Andrew Dalke
Apr 19, 2001 at 1:58 am
Apr 22, 2001 at 12:30 am -
I read an article on http://www.perl.com/pub/2001/04/01/parrot.htm about a joint effort between Larry Wall and Guido van Rossum to conceive a new animal. According to them camel + python = parrot. I ...
Alex Shindich
Apr 1, 2001 at 10:33 pm
Apr 6, 2001 at 11:10 pm -
Has everyone contemplated upon creating a python 'compiler', which can produce a self-contained binary executable? (for when speed is an absolute neccessity) ..or does such a thing exist already? I'd ...
News-server.columbus.rr.com
Apr 17, 2001 at 10:35 pm
May 2, 2001 at 3:52 pm -
Sacrilege, I know. ;-))) But sometimesIi wonder why no modern language will let me have a simple goto statement when nothing else will do as well...this is a rhetorical statement only... I have ...
Ron Stephens
Apr 13, 2001 at 5:55 pm
Apr 17, 2001 at 1:00 am -
I'm planning to do my graduate thesis (pro gradu) for MsC on (yet unconfirmed and still vague) subject tightly related to Python. In short, the main goal is to test hypothesis that a program (or some ...
Jarno J Virtanen
Apr 12, 2001 at 9:13 am
Apr 30, 2001 at 4:19 pm -
I am a Python newbie and I am wondering if Python and TKInter will allow me to write web applications similar to what I can do with ActiveX. Apparently, ActiveX is not Netscape-compatible, or so I'm ...
Robert Johnson
Apr 11, 2001 at 2:20 pm
Apr 18, 2001 at 4:00 am -
What's the source for Python being the "fastest growing programming language"? Just curious.
Douglas Alan
Apr 2, 2001 at 10:23 pm
Apr 5, 2001 at 10:00 pm -
I've started to discover the real handiness with lambda expressions in python. I would like to print out each string in a list without having a for loop and I thought this was the perfect candidate ...
Jeff Shipman
Apr 27, 2001 at 12:26 am
Apr 30, 2001 at 8:11 am -
Hi everyone, So I need to build a very large file. Essentially, I need to go through a directory and recursively append the contents of each file from that directory to a file. Here's what I'm doing ...
Thomas Duterme
Apr 14, 2001 at 8:09 am
Apr 16, 2001 at 6:14 pm -
Hi-- I'm doing some research developing some algorithms for solving scheduling problems. In the past, I have done most of my work using MS C/C++ v. 7 or the Watcom compiler on a PC because I could ...
Rick Olson
Apr 21, 2001 at 8:25 pm
May 28, 2001 at 4:50 am -
The idea is to optionnaly allow to force an explicit variable declaration in Python functions/methods for compilation time check. The transparent creation of variables in Python is really nice, but ...
Laurent Pointal
Apr 25, 2001 at 9:01 am
Apr 28, 2001 at 10:40 pm -
17
Pep 245
It's good to know that despite the turmoil of the past year, Guido still comes in to work each day with a fresh view of things ;-) -- Emile van Sebille emile at fenx.com --------- "Tim Peters" ...Emile van Sebille
Apr 7, 2001 at 12:17 am
Apr 20, 2001 at 6:17 am -
Hey all, I've gotten the bug to learn programming and have chosen Python as the language to learn with. I've downloaded python 2.0 (MacOS) from python.org and started printing out some of the online ...
Christopher W. Boerger
Apr 15, 2001 at 3:18 am
Apr 16, 2001 at 1:43 pm -
PyChecker is a python source code checking tool to help you find common bugs. It is meant to find problems that are typically caught by a compiler. Because of the dynamic nature of python, some ...
Neal Norwitz
Apr 7, 2001 at 6:28 pm
Apr 13, 2001 at 10:12 pm -
www.curl.com is the new website that I think just went up last Friday. Curl Corporation is a new MIT inspired outfit whose owners includes Tim Berners-Lee and Michael Dertoutzos (sp??) . I went there ...
Ron Stephens
Apr 6, 2001 at 12:25 am
Apr 13, 2001 at 8:03 pm -
The right way forward for hygienic macros seems to me to be to do a proof of concept implementation on top of standard Python so we can play with it and find if there is anything that really needs ...
Neil Hodgson
Apr 17, 2001 at 11:51 pm
Apr 30, 2001 at 7:34 pm -
Hello, I have downloaded the Windows version "Python-2.1.exe" of Python and am unable to run the executable. An error message stating "System DLLs corrupt or missing" always appears. On closer ...
Jim K
Apr 20, 2001 at 1:14 am
Apr 29, 2001 at 5:07 am -
what's the best way to spell an abstract base class so that 0) base is B and A inherits from B 1) doing B() causes an exception 2) most of the initialisation code is common in B I thought of class B: ...
Robin Becker
Apr 13, 2001 at 11:04 am
Apr 26, 2001 at 1:02 pm -
Is there a published list of Python users? People ask me all the time 'Who uses it?". I've search Google Groups and found a few names mentioned but I'm looking for more. Thanks, Daniel Klein Portland ...
Daniel Klein
Apr 22, 2001 at 3:30 am
Apr 23, 2001 at 4:51 pm -
I want to test a line to see if it matches any of a bunch of pre-compile regexes. I also want to capture the match objects. What really want to write is something like this (pseudo-code): e1 = ...
Roy Smith
Apr 21, 2001 at 8:02 pm
Apr 23, 2001 at 3:49 pm -
I'm having a heck of a time convincing my Apache web server that it's ok to run Python CGI scripts. The test script "hello" does indeed exist in the proper directory and runs fine under Python from ...
David Fuess
Apr 16, 2001 at 6:20 pm
Apr 21, 2001 at 5:24 pm -
Over the years, I've occasionally used this idiom: NULLARGUMENT = () def someFunctionOrMethod (argument = NULLARGUMENT ): if argument is NULLARGUMENT: doSomething() else: doSomethingElse() That is, I ...
Mike C. Fletcher
Apr 18, 2001 at 3:59 am
Apr 19, 2001 at 9:04 pm -
I was working through Programing python by Mark Lutz, and I can get Example 4-1 working under unix (from the 2.0 tar.gz), but when I tried to run this under windows (win98 or win2000) it generates an ...
Palmer, Dan [SKY:1G21:EXCH]
Apr 12, 2001 at 5:25 pm
Apr 16, 2001 at 6:28 pm -
ANNOUNCING mxNumber - Version 0.2.0 Python Interface to GNU MP Number Types INTRODUCTION ------------ As you all know, Moshe Zadka has been pushing for a new rational number type recently (at the ...
M.-A. Lemburg
Apr 25, 2001 at 9:15 pm
May 2, 2001 at 10:27 pm -
Just starting to get my head around sockets and I'm using PP2E by Mark Lutz as my guide. The examples all seem to indicate that you need to send/recv a specific (maximum) amount of data. The examples ...
Daniel Klein
Apr 29, 2001 at 4:20 pm
May 2, 2001 at 5:29 pm
Group Overview
group | python-list |
categories | python |
discussions | 863 |
posts | 4,674 |
users | 926 |
website | python.org |
926 users for April 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)