Search Discussions
-
Playing with Prothon today, I am fascinated by the idea of eliminating classes in Python. I'm trying to figure out what fundamental benefit there is to having classes. Is all this complexity ...
David MacQuigg
Mar 28, 2004 at 1:28 am
Apr 6, 2004 at 9:43 am -
128
PEP 318
Hi I have read some mail on the dev mailing list about PEP 318 and find the new Syntax really ugly. def foo[staticmethode](x, y): pass I call this foo(1, 2), this isn't really intuitive to me! Also I ...Marco Bubke
Mar 21, 2004 at 4:53 pm
Mar 27, 2004 at 4:28 pm -
Well after all this discussion it would appear that a 'Python like' language has appeared = Prothon. http://www.prothon.org/index.html Very alpha, sort of like Python (if you consider the indenting ...
Peter Hickman
Mar 26, 2004 at 4:42 pm
Mar 3, 2012 at 12:07 pm -
How do I force static typing in Python? -Premshree Pillai ===== -Premshree [http://www.qiksearch.com/] Yahoo! India Insurance Special: Be informed on the best policies, services, tools and more. Go ...
Premshree Pillai
Mar 12, 2004 at 10:09 am
Mar 20, 2004 at 4:49 am -
Seems like we need a simple way to extend Python syntax that doesn't break existing syntax or clash with any other syntax in Python, is easy to type, easy to read, and is clearly distinct from the ...
David MacQuigg
Mar 10, 2004 at 9:01 pm
Apr 4, 2004 at 9:22 pm -
I agree that it does not really work as most people think it does, but how would you perform the same task as reload() without the reload()? Would this be done by "del sys.modules['modulename']" and ...
Ellinghaus, Lance
Mar 11, 2004 at 8:10 pm
Mar 19, 2004 at 1:07 am -
Two areas where I've found 'goto' two be useful in other languages are in (untested examples in C++) (1) deeply nested loops for (k=0; k < 10; ++k) for (j=0; j < 10; ++j) for (i=0; i <10; ++i) if (/* ...
Brett
Mar 6, 2004 at 6:18 pm
Mar 11, 2004 at 2:50 pm -
I've recently been trying out various different GUI frameworks in Python and was wondering if I could get your input on the pros and cons of the different ones... wxPython: I love the programming ...
Hugh Macdonald
Mar 30, 2004 at 6:48 am
Apr 11, 2004 at 4:03 pm -
Hello, I am beginning to work on a fairly large project and I'm considering to use python for most of the coding, but I need to make sure first that it is reliable enough. I need to make sure that I ...
Assaf__
Mar 22, 2004 at 11:11 am
Mar 29, 2004 at 2:44 am -
This article is posted at the request of C.W. Yang who asked me to detail my opinion of Lisp, and for the benefit of people like him, who may find themselves intrigued by this language. The opinions ...
Nobody
Mar 3, 2004 at 12:43 pm
Apr 15, 2004 at 2:18 pm -
Can one run a 1.5 .pyc file with the 2.x version interpreters and vice versa? How about running a 2.x .pyc using a 2.y interpreter?
Jon Perez
Mar 19, 2004 at 10:14 am
Mar 23, 2004 at 4:25 am -
Hello, is there a rationale for the following behavior: False True Thanks, Axel
Axel Boldt
Mar 16, 2004 at 12:32 am
Mar 20, 2004 at 2:51 am -
Hello, This is not a troll posting, and I've refrained from asking because I've seen similar threads get all nitter-nattery. But I really want to make a decision on how best to invest my time. I'm ...
Fred Ma
Mar 27, 2004 at 7:19 am
Apr 1, 2004 at 10:21 pm -
Paul, I get the error: Traceback (most recent call last): File "C:\Python23\lib\site-packages\Pythonwin\pywin\framework\scriptutils.py", line 310, in RunScript exec codeObject in __main__.__dict__ ...
David Lees
Mar 14, 2004 at 5:00 am
Mar 27, 2004 at 8:23 pm -
OK, First off I am new to Python but I am a convert. I sat down and wrote two medium complexity applications in Python from scratch and learning the language in a few days. If I were to do this in ...
Adam T. Gautier
Mar 30, 2004 at 4:02 pm
Apr 27, 2004 at 7:05 pm -
I'm just curious if such a beast exists out there. I've googled around some and read some programming language websites but I have yet to find a language similar to Python that can be compiled to ...
Ed Cogburn
Mar 20, 2004 at 2:04 pm
Mar 25, 2004 at 3:25 am -
Here's a Python slogan suggestion by Ken Manheimer. One Nation Under Under Python I thought it was pretty funny. I don't know if international folks will get it, though. :-) Shane
Shane Hathaway
Mar 31, 2004 at 6:58 pm
Apr 6, 2004 at 5:03 am -
Hello, I'm Peter, and I'm very much a newbie. New in the sense of being a novice at everything to do with programming, rather than just new to Python, so please be very explicit in your replies ...
Peter MacKenzie
Mar 30, 2004 at 12:25 am
Apr 4, 2004 at 8:07 pm -
33
loop scope
print p 1 2 3 3 My naive expectation was that p would be 'not defined' from outside the loop. I know this is not news. In fact I had come across some discussion of this fact, but apparently didn't ...Arthur
Mar 11, 2004 at 9:08 pm
Mar 20, 2004 at 2:55 am -
I'm a bit late with this, but better late than never... PEP: 328 Title: Imports: Multi-Line and Absolute/Relative Version: $Revision: 1.2 $ Last-Modified: $Date: 2004/01/31 05:19:25 $ Author: Aahz ...
Aahz
Mar 8, 2004 at 8:24 pm
Apr 3, 2004 at 1:11 am -
x = [chr(a) + chr(b) for a in xrange(100) for b in xrange(100)] # list version: c = [] for i in x: if i not in c: c.append(i) 2.0331145438875637 # dict version: c = {} for i in x: if i not in c: c[i] ...
Robert Brewer
Mar 29, 2004 at 6:47 am
Mar 31, 2004 at 9:19 pm -
Still trying to understand "=="... It appears as if two equal objects can become unequal if you perform the same operations on them: [1, [...]] [1, [1, [...]]] True Note that they're equal, yet are ...
Axel Boldt
Mar 16, 2004 at 11:38 pm
Mar 31, 2004 at 3:45 am -
I have to place a root password into a Python script. Is there a way to encode it so that one can't read the password when viewing the file, but when the sting is used it's decoded? For example: pass ...
Bart Nessux
Mar 12, 2004 at 5:11 pm
Mar 14, 2004 at 2:38 pm -
I began using Python since version 2.2.1 and without knowing anything about OOP, so I had the advantage of a fresh start ;) Still, I will readily admit that I was not immediately sold to metaclasses ...
Michele Simionato
Mar 28, 2004 at 6:43 am
Apr 5, 2004 at 3:48 am -
I'm considering Python as a replacement for the highly specialized scripting languages used in the electronics design industry. Design engineers are typically not programmers, and they avoid working ...
David MacQuigg
Mar 6, 2004 at 7:01 pm
Mar 9, 2004 at 6:26 pm -
Hi all, I am totally hooked on what I have learned about python. I am going to use it to develop a simple data entry app I need for some financial record keeping. I understand tkinter is official and ...
Jonathon McKitrick
Mar 3, 2004 at 6:15 pm
Apr 23, 2004 at 2:13 am -
23
vim & python
Hello I have a bunch of questions about using python scripting in vim and about editing python with vim. I can install vim with python scripting support, but I can not find docs, examples or ...Sb
Mar 1, 2004 at 7:51 pm
Mar 26, 2004 at 4:45 pm -
Hi, Under some naming conditions of module files, it seems that python lost class static variables values. It seems only to append when importing a "badly" named module that itself import a module ...
Yannick Patois
Mar 19, 2004 at 2:49 pm
Mar 22, 2004 at 12:56 am -
Is there a more recent set of Python style guidelines than PEP 8, "Style Guide for Python Code", by van Rossum and Warsaw, at http://www.python.org/peps/pep-0008.html , which is dated July 5, 2001?
Beliavsky
Mar 10, 2004 at 7:12 pm
Mar 17, 2004 at 7:22 pm -
In thinking about PEP 318, I came across an idea that might be worth pursuing further. It goes deeper than PEP 318, so it would need its own PEP. The idea is to make 'def' and 'class' usable within ...
Shane Hathaway
Mar 24, 2004 at 9:58 pm
Mar 27, 2004 at 12:58 am -
This is my .02 as to why Python is excellent for academic use for upcoming CS graduates. Since I have been 14 I have been programming, mainly BASIC/VB/C/C++ so I was familiarized with basic ...
Adonis
Mar 4, 2004 at 2:11 am
Mar 13, 2004 at 9:17 am -
21
Why Python?
I am looking at learning Python, but I would like to know what its strengths and weaknesses are before I invest much time in learning it. My first thought is what is it good for programming, however ...Todd7
Mar 1, 2004 at 2:11 am
Mar 3, 2004 at 4:40 pm -
20
Why '==' ??
I may be about to get flamed as some heretic against the ancient way..... but if assignment in conditional statements isn't possible.... why do we need to use '==' instead of just '=' for if and ...Fuzzyman
Mar 30, 2004 at 1:10 pm
Apr 3, 2004 at 3:27 am -
I am looking for open source 3D applications written primarily in Python. Not Python scripted, but rather, Python as the primary means of development, dropping to C++ or C only when necessary for ...
Brandon J. Van Every
Mar 23, 2004 at 12:04 am
Mar 31, 2004 at 4:28 pm -
Hello, I would like to know the definition of type safe and whether Python can be considered as a type safe language. Similarly are Java, C# or C++ type safe? Regards, Srijit
Srijit
Mar 16, 2004 at 6:43 pm
Mar 17, 2004 at 3:43 pm -
Hi All, I am looking for alternatives to my current Linux OS, and am currently evaluating both FreeBSD and OpenBSD. Has anyone got a strong point for or against one of these OSes, specifically ...
Patrick Useldinger
Mar 19, 2004 at 3:06 pm
Mar 25, 2004 at 4:48 pm -
Hi , I obtained this result : ------ True ------ with python2.2.3 and 2.3.3 . (Yes , in python 2.2 i get 1 instead of True) but ------ TypeError ------- and ----------------------------- 'x.__gt__(y) ...
Nicola Mingotti
Mar 18, 2004 at 2:45 am
Mar 19, 2004 at 9:03 am -
Hey, I'm an experience programmer but new to Python. I'm doing a simple implementation of a field morphing techinique due to Beier and Neely (1992) and I have the simple case working in Python 2.3 - ...
Jason
Mar 18, 2004 at 5:43 pm
Mar 24, 2004 at 3:32 pm -
I have a problem that I would like to get some advice on from other Pythonistas. I currently manage a (soon to be) open source project for displaying molecular graphics for a variety of different ...
Rick Muller
Mar 16, 2004 at 3:25 am
Mar 17, 2004 at 11:24 pm -
Hi, Does anyone know of a source code editor for python that has the following characteristics: 1) Freeware (desired) 2) Runs on Linux (required) 3) Syntax high lighting (required) 4) A separate ...
Jim Benson
Mar 9, 2004 at 2:13 am
Mar 11, 2004 at 11:08 am -
Is there a Python implementation of Martin Richards benchmark Bench? Be interesting to add it to these www.lissett.com/ben/exp/bench1.htm
Duncan Lissett
Mar 29, 2004 at 10:46 pm
Apr 26, 2004 at 4:22 am -
Hello! I have just started learning python and encountered a problem. All I wanted to do, was to open a text file search and count the number of occurances of a single word and print that count. ...
Droog
Mar 18, 2004 at 2:53 am
Mar 30, 2004 at 3:59 am -
Today I tried to implement some sort of unit testing into my program for the first time, and must admit to being a little disillusioned with the process. Mainly, my issue is that in my program, the ...
Kylotan
Mar 7, 2004 at 4:39 pm
Mar 14, 2004 at 12:22 am -
Ok, so here's the deal. some idoit wrote a perl script that executes a java program using the system command. the operating system was windows I decided to port the evil perl to lovely python. All ...
Jon c
Mar 5, 2004 at 2:55 pm
Mar 8, 2004 at 10:53 pm -
I tested the following simple code: ----------------- from Tkinter import * class App: def __init__(self, master): frame = Frame(master) frame.pack() self.button = Button(frame, text="QUIT", ...
Batista, Facundo
Mar 11, 2004 at 5:50 pm
Mar 16, 2004 at 6:53 am -
15
Gadfly ????
Gadfly looks like an interesting database system for python. I am working on a couple of projects that may benefit from using a database (on the other hand, these days - is there really aproblem with ...Fuzzyman
Mar 4, 2004 at 9:24 am
Mar 12, 2004 at 1:50 pm -
This is just a trial balloon. It isn't even in proper PEP format yet. Don't take it too personally! Pre-pep for a show() built-in function. This pre-PEP describes a replacement for the Python print ...
Paul Prescod
Mar 8, 2004 at 12:57 am
Mar 18, 2004 at 10:56 pm -
Hi I would like to replace accentuel chars (like "?", "?" or "?") with non accetued ones ("?" - "e", "?" - "e", "?" - "a"). I have tried string.replace method, but it seems dislike non ascii chars... ...
Nicolas Bouillon
Mar 15, 2004 at 11:45 pm
Mar 18, 2004 at 9:38 am -
I am starting to learn Python but I want to know how the job market looks for programming using Python. I really don't see many jobs (probably one or two) that require Python experience at all. Most ...
Kbass
Mar 13, 2004 at 11:44 pm
Mar 16, 2004 at 10:42 pm -
Hi, I know the python community is not very receptive towards extending the python syntax. Nevertheless I'd like to make a suggestion and hear your pro and cons. I want so suggest a concatenation ...
Uwe Mayer
Mar 11, 2004 at 11:38 am
Mar 12, 2004 at 3:12 pm
Group Overview
group | python-list |
categories | python |
discussions | 993 |
posts | 5,018 |
users | 1,133 |
website | python.org |
1,133 user for March 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)