Search Discussions
-
I have a lot of experience in ANSI C/C++, I want to learn a new language and which it can help me in the work. I just want to clear which(python or perl) is more comfort for me?
David
Apr 30, 2002 at 5:11 am
May 25, 2002 at 6:53 pm -
Please send me comments on a draft PEP deprecating and relocating six built-in functions. The text file is at: http://users.rcn.com/python/download/deppep.txt It is also listed below. Raymond ...
Raymond Hettinger
Apr 29, 2002 at 5:34 am
May 11, 2002 at 3:50 am -
Although they may be found in clisp, I don't think docstrings are regarded a general feature of "Lisp" or Scheme. Seems to me the more prominent genetic similarities are the overall semantics: late ...
James J. Besemer
Apr 20, 2002 at 10:41 am
Apr 29, 2002 at 5:37 pm -
Here's one final posting of PEP 285. I've read (or at least skimmed) all feedback that was on our news server by 9:30am EST on April 2nd, plus anything mailed directly to me or to python-dev until ...
Guido van Rossum
Apr 3, 2002 at 10:32 pm
Apr 9, 2002 at 3:43 am -
Itamar Shtull-Trauring <twisted at itamarst.org wrote in message news:<mailman.1017656355.5887.python-list at python.org ... While the small amount of software I have written has been release under ...
Peter Olsen
Apr 9, 2002 at 8:23 pm
Aug 16, 2002 at 3:47 am -
Since Python does not have unsigned numbers, I think Python should have a (Java-like) ' ' operator. The ' ' means 'logical-shift-right', where a zero is copied into the high bit. This would be kind ...
Ken Peek
Apr 13, 2002 at 7:44 pm
Jun 12, 2002 at 6:56 pm -
Recently on this newsgroup there's been a discussion about adding a bool datatype to Python; and Guido has decided to do this. Some time ago, there was a rather contentious discussion about changing ...
Phil hunt
Apr 4, 2002 at 7:57 pm
Apr 12, 2002 at 1:15 am -
64
2.1 vs. 2.2
I'm downloading Python 2.2.1 right now and I wonder why you still produce bugfix releases for the old 2.1 development line. It seems that Python 2.2 is somewhat broken. If not what's the reason that ...Jens Baader
Apr 13, 2002 at 9:46 pm
Apr 22, 2002 at 10:57 pm -
I have to say that the most damaging thing introduced by PEP 285 has little to do with the technical merits of the discussion. The level of respect accorded others in this community has taken the ...
Cliff Wells
Apr 8, 2002 at 8:42 pm
Apr 14, 2002 at 2:49 pm -
OK, I've decided to write a PEP. Preliminary to this, I'd like people's comments. I wish to make the pas startement optional. That is, in any Python program where there is a pass it can be left out ...
Phil hunt
Apr 15, 2002 at 11:26 pm
Apr 18, 2002 at 2:11 pm -
Please send me comments on a draft PEP deprecating and relocating six built-in functions. The text file is at: http://users.rcn.com/python/download/deppep.txt This is version two and incorporates the ...
Raymond Hettinger
Apr 29, 2002 at 7:52 am
May 29, 2002 at 7:30 pm -
Trying to bring python up to date (working version is 1.5.2) on a Sun Sparc Solaris2.7 system: GNU Make version 3.79, by Richard Stallman and Roland McGrath. Built for sparc-sun-solaris2.7 gcc ...
Hugh Sasse Staff Elec Eng
Apr 12, 2002 at 5:32 pm
Apr 22, 2002 at 4:21 pm -
Here's a serious proposal, safe to post now that April Fool's is over. Please read & comment. -- David Goodger goodger at users.sourceforge.net Open-source projects: - Python Docstring Processing ...
David Goodger
Apr 2, 2002 at 5:28 am
Apr 21, 2002 at 12:33 am -
I think an 'xor' operator is needed. The 'xor' operator means 'logical-exclusive-or', and returns a 1 or 0. Here is some code that does what I want (in all the cases I can think of) for 'xor': # ...
Ken Peek
Apr 13, 2002 at 7:44 pm
Apr 17, 2002 at 5:11 am -
40
no subject
3 Luxury Vacations - 199.00 Orlando - Bahamas - Cancun Mexico! This is not a timeshare! No property tours! No Catch! 1-800-922-1432 CALL NOW TOLL FREE Operators are standing by. Cruise - Dive - ...Optin_travel
Apr 1, 2002 at 6:31 am
Apr 29, 2002 at 10:52 pm -
38
Easter Eggs
Who can tell me what's in there. Someone on c.l.py recently let drop the hint about finding the Zen of Python at the interactive prompt in 2.2. I went so far as trying the command in Python versions ...Lulu of the Lotus-Eaters
Apr 9, 2002 at 10:22 pm
Apr 11, 2002 at 10:36 pm -
Not that it's a big deal since there's many ways to do that, but can I use something like verboseGender = (gender == 'm') ? 'male' : 'female' in Python?
Philipp Lenssen
Apr 17, 2002 at 5:48 pm
Apr 25, 2002 at 6:12 pm -
Hi, there. I previously saw a posing named "Python vs Php" and sys atht "... there are many packages you can download..." However, only one package is mentioned: jonpy What is the most popular and ...
Johan Fredrik Øhman
Apr 28, 2002 at 12:50 pm
May 2, 2002 at 9:29 am -
Hello, how can you dynamically update the locals() namebindings? Example what does *not* work: def func(somedict): locals().update(somedict) print i func({'i': None}) This fails on 'print i' with ...
Holger krekel
Apr 27, 2002 at 7:57 pm
Apr 30, 2002 at 8:06 pm -
I know this is way off topic, but I figure the heavy hackers here will understand my mindset better than those at comp.lang.C I have been doodling with python (nasty habit I know but I have to do ...
Ryan
Apr 9, 2002 at 2:58 am
Apr 16, 2002 at 4:19 am -
Greetings, I need to translate a (rather voluminous 100MB) java program to python. After a few searches on google, apparently the best tools for this task are Lex-Yacc (Flex-Bison on linux). While I ...
Vio
Apr 3, 2002 at 8:55 am
Apr 13, 2002 at 11:43 pm -
I would like to be able to write an expression that yields an object that I can subsequently use to rebind a name that I mention only in that expression. How do I do it? My motivation is to be able ...
Andrew Koenig
Apr 9, 2002 at 7:23 pm
Apr 13, 2002 at 6:00 pm -
Raymond Hettinger
Apr 29, 2002 at 6:03 pm
Apr 30, 2002 at 6:04 pm -
Hello, people. There is something which I find slightly irritating with the try/finally construct, and wonder if someone would not have a good advice to offer. I guess it is very usual that one has, ...
François Pinard
Apr 24, 2002 at 2:14 pm
May 6, 2002 at 6:12 pm -
I've put together an encryption function written in Python using the SHA module to provide a keystream in output feedback mode. It's nowhere near as good as AES, but should be a big improvement over ...
Paul Rubin
Apr 24, 2002 at 5:04 am
Apr 27, 2002 at 2:13 am -
Hi all, after some time of consideration, I have decided to move the interface to Stackless Python's multitasking towards the ideas behind the Limbo Language. Besides the tasklets, there are ...
Christian Tismer
Apr 24, 2002 at 3:34 pm
May 6, 2002 at 4:10 am -
I am preparing myself to work on extracting data from 4 text files (fixed width format) which combined size is about 80GB. Considering deadlines, costs, and my limited programming knowledge I thought ...
Rad
Apr 24, 2002 at 4:41 pm
Apr 26, 2002 at 5:25 pm -
I was recently introduced to OmniMark. One of our exercises was to take a plain text file of Hamlet and convert it to SGML. So I did it in Python, too. But the best time I could get from Python was ...
Frederick H. Bartlett
Apr 19, 2002 at 1:24 am
Apr 25, 2002 at 10:53 am -
Hello, one thing I like very much about Python is that statements work like you would expect them to work. Take for example the use of dict.values() for dictionaries: If you store the result of ...
Dominikush
Apr 17, 2002 at 6:53 am
Apr 23, 2002 at 2:30 am -
Anyone else had a problem un-installing 2.2 for win32? When I tried to un-install 2.2 prior to installing 2.2.1 I got an error saying it had already been un-installed. Tried the link in start menu ...
Robin Becker
Apr 13, 2002 at 10:04 am
Apr 20, 2002 at 12:55 pm -
Shouldn't I find the special methods '__iadd__' et al, when asking for the attributes of 'int'? ['__abs__', '__add__', '__and__', '__class__', '__cmp__', '__coerce__', '__delattr__', '__div__', ...
Ralf Juengling
Apr 12, 2002 at 1:23 pm
Apr 24, 2002 at 4:17 pm -
Hi, what are your experiences, using wxPython/wxWindows in large projects? Large means in my case a sales system, based on MySQL. I'm thinking about implementing it in wxPython, but I'm not sure ...
Harald Schneider
Apr 8, 2002 at 9:55 am
Apr 13, 2002 at 4:08 pm -
Hi, I was wondering what the best approach is on providing libraries for varying versions of Python? My aim is to distribute a module that will provide a set of core functions, but provide more ...
Allan Crooks
Apr 21, 2002 at 2:29 pm
Apr 22, 2002 at 5:13 pm -
21
Safe eval?
Is it possible to have a safe eval() on the server-side even when the string consists of submitted user data? Thanks. I've been just discussing this in a PHP group, but now I want to port an ...Philipp Lenssen
Apr 16, 2002 at 8:46 pm
Apr 21, 2002 at 7:36 pm -
I have entered the following at the command line in Python 2.1.1 on Linux and in Python 2.2 on NT and get the same results: File "<string ", line 1 r'\' ^ SyntaxError: invalid token It appears as if ...
Colin Brown
Apr 23, 2002 at 9:42 pm
Apr 30, 2002 at 4:37 am -
Is there a way to prevent the print statement to automatically add a space between two objects? a= 1 how to make that cursed blank character dissappear? Other than print "a=%d" % a because it wouldnt ...
Ante Bagaric
Apr 11, 2002 at 10:33 am
Apr 15, 2002 at 3:40 am -
It seems this has been brought up before, but I could only find two posts about it (about a year old). The question is: Could we have tuple comprehensions? The argument I saw used earlier was based ...
Magnus Lie Hetland
Apr 11, 2002 at 3:18 am
Apr 12, 2002 at 5:36 pm -
This question is so fundamental that I strongly suspect it's already answered - ig that's the case, please forgive this poor newbie, for he has done some work searching over Python FAQ and Google. ...
Fortepianissimo
Apr 30, 2002 at 1:54 am
May 7, 2002 at 9:24 am -
It seems that Python started out (as a Lisp derivitave) with much less of an OO emphasis. I expect len(o) has precedent dating back to the original language. However, over time Python has ...
James J. Besemer
Apr 20, 2002 at 3:38 am
May 1, 2002 at 11:35 am -
I tested this using the Python command interpreter on a Windows XP box running: Python 2.1 (#15, Apr 16 2001, 18:25:49) [MSC 32 bit (Intel)] on win32 Type "copyright", "credits" or "license" for more ...
Chris Spencer
Apr 25, 2002 at 10:14 pm
Apr 29, 2002 at 10:45 pm -
The help and tutor maillists indicate that the use of input() rather than raw_input() is widespread. I think this function is so harmful and so likely to be used that it should be deprecated hasta ...
Raymond Hettinger
Apr 14, 2002 at 10:16 pm
Apr 16, 2002 at 9:46 pm -
Is anyone using Python as a spacecraft ground system scripting language, or onboard (embedded) language? Pros and cons when compared with TCL or JAVAScript. Just some real life, honest opinions. The ...
M. J. Mix
Apr 10, 2002 at 8:16 pm
Apr 16, 2002 at 1:11 pm -
Hi folks. I am doing my development on a PC (activeware's distribution) and the final project will be running on a macintosh. Umm...I am a little worried that there is not a command line interpreter ...
Bryce C. Mason
Apr 12, 2002 at 4:58 pm
May 6, 2002 at 4:55 pm -
Hi, I've just started trying to do some simple things with Python. I've read the Tutorial and other Doc's but I'm missing something obvious somewhere. All I want to do right now is run Tim Peter's ...
Neville Franks
Apr 21, 2002 at 10:27 pm
Apr 29, 2002 at 1:49 am -
I'm using CompatMysqldb from http://sourceforge.net/projects/mysql-python with Python 2.2 Whenever I try to insert some data into a mysql db, I get this error: Traceback (most recent call last): File ...
Fernando RodrÃguez
Apr 23, 2002 at 9:31 am
Apr 25, 2002 at 3:06 am -
Tim Peters wrote: [in a dull moment] I'd like to take this opportunity to at least thank the developers, bots included, and other contributors (in the most heartfelt way I can without sending large ...
Peter Hansen
Apr 11, 2002 at 1:52 am
Apr 12, 2002 at 6:47 pm -
Actually, Python 1.5.2 was already a bit too large. The functional programming constructs (lambda, map, reduce, filter) are fluff. List comprehension is cutesy and practically Perlish, an ...
Greg Weeks
Apr 6, 2002 at 7:43 pm
Apr 10, 2002 at 9:25 am -
Hi, Would somebody explain the following behavior (Python 2.2)? Function nested in class: (why nested scoping doesn't work?) class A: a = 1 def f(): print a f() result: Traceback (most recent call ...
Marek Augustyn
Apr 5, 2002 at 5:31 pm
Apr 9, 2002 at 8:16 am -
GoF Design Patterns in Python [Warning LONG POST AHEAD!] I'd like to see a canonical catalog of OODP in Python. At a minimum it should list each of the 23 GoF patterns, and at least one minimal ...
Jim Dennis
Apr 4, 2002 at 1:11 am
Apr 8, 2002 at 12:47 pm -
Does anyone know why strings (i.e., those of length 1) don't share their data in Python? Since their immutable, it seems like this would be the obvious thing to do. So, for example, the space ...
Mike Coleman
Apr 16, 2002 at 4:01 am
Apr 26, 2002 at 1:21 am
Group Overview
group | python-list |
categories | python |
discussions | 996 |
posts | 5,939 |
users | 1,059 |
website | python.org |
1,059 user for April 2002
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)