Search Discussions
-
I am sorry all I am not here to just blame Python. This is just an introspection of whether what I believe is right. Being a devotee of Python from past 2 years I have been writing only small apps ...
Madhusudan.C.S
Jan 11, 2009 at 9:22 pm
Jan 28, 2009 at 5:33 am -
Object oriented languages doesn't allow execution of the code without class objects, what is actually happening when we execute some piece of code, is it bound to any class? Those who have time and ...
M Kumar
Jan 29, 2009 at 10:01 am
Feb 6, 2009 at 12:59 pm -
So I kind of wanted to ask this question on the pypy mailing list.. but there's only a pypy-dev list, and I don't want to put noise on the dev list. What's the point of RPython? By this, I don't mean ...
Brendan Miller
Jan 17, 2009 at 12:37 am
Jan 31, 2009 at 3:32 pm -
PEP 8 doesn't mention anything about using all caps to indicate a constant. Is all caps meaning "don't reassign this var" a strong enough convention to not be considered violating good python style? ...
Brendan Miller
Jan 14, 2009 at 6:49 am
Jul 5, 2009 at 9:56 pm -
Just out of curiousity, have there been any attempts to make a version of Python that looks like actual English text? I mean, so much of Python is already based on the English language that it seems ...
The Music Guy
Jan 16, 2009 at 1:02 am
Feb 3, 2009 at 9:59 pm -
Hello group, I've come from C/C++ and am now trying to code some Python because I absolutely love the language. However I still have trouble getting Python code to run efficiently. Right now I have a ...
Johannes Bauer
Jan 9, 2009 at 3:04 am
Jan 23, 2009 at 3:12 pm -
I've done a good bit of Perl, but I'm new to Python. I find myself doing a lot of typecasting (or whatever this thing I'm about to show you is called), and I'm wondering if it's normal, or if I'm ...
Sprad
Jan 2, 2009 at 9:15 pm
Jan 17, 2009 at 5:21 pm -
comp.lang.lisp,comp.lang.scheme,comp.lang.functional,comp.lang.python,comp.lang.ruby Here's a interesting toy problem posted by Drew Krause to comp.lang.lisp: ------------------------ On Jan 16, 2:29 ...
Xah Lee
Jan 17, 2009 at 5:16 pm
Feb 26, 2009 at 12:46 am -
Hi, while checking out Python 3, I read that all text strings are now natively Unicode. In the Python language reference (http://docs.python.org/3.0/reference/ lexical_analysis.html) I read that I ...
Jefm
Jan 26, 2009 at 6:16 pm
Jan 28, 2009 at 6:29 pm -
The error... Traceback (most recent call last): File "<pyshell#23 ", line 1, in <module file = zipfile.ZipFile('data.zip', "r") File "C:\Python25\lib\zipfile.py", line 346, in __init__ ...
Webcomm
Jan 9, 2009 at 12:47 am
Jan 13, 2009 at 6:14 am -
Greetings! I've heard enough raving about Python, I'm going to see for myself what all the praise is for! I'm on a Mac. I use Netbeans for Java, PHP, and C if needed. Do you even use an IDE for ...
Joseph A Marlin
Jan 27, 2009 at 11:06 pm
Feb 2, 2009 at 8:58 pm -
I would like to develop some module for Python for IPC. Socket programming howto recommends that for local communication, and I personally experienced problems with TCP (see my previous post: "Slow ...
Laszlo Nagy
Jan 13, 2009 at 4:25 pm
Jan 15, 2009 at 5:11 pm -
Hello, I would like to evaluate list comprehension expressions, from within which I'd like to call a function. For a first level it works fine but for second level it seems to lose the "_[1]" ...
Mario ruggier
Jan 15, 2009 at 11:29 am
Jan 22, 2009 at 10:30 am -
I curious of how many are "really" out there. I have been watching the list for some time but basically see the same 10 or so people answering questions. Reply to this message so we can see how many ...
Rantingrick
Jan 27, 2009 at 3:07 pm
Jan 28, 2009 at 5:04 pm -
Hi, Im trying to write a program for my USB device and I'm thinking of using python to do this. The USB device is of my own making and it is activated when one of the two data pins of the USB is ...
Astan Chee
Jan 22, 2009 at 7:38 am
Jan 27, 2009 at 10:43 pm -
I want to implement a internal DSL in Python. I would like the syntax as human readable as possible. This means no disturbing '.;()\' characters. I like to have the power of the hosting language as ...
Mark
Jan 6, 2009 at 3:32 pm
Jan 9, 2009 at 6:45 pm -
Hi All, Anyone knows why the code below gives an error? global_vars = {} local_vars = {'ar':["foo", "bar"], 'y':"bar"} print eval('all((x == y for x in ar))', global_vars, local_vars) Error: ...
Fabio Zadrozny
Jan 27, 2009 at 11:31 pm
Jan 31, 2009 at 11:12 am -
raise ValueError(errmsg("Expecting property name", s, end)) http://docs.python.org/library/json.html What am I doing wrong ?
Gert
Jan 25, 2009 at 9:12 pm
Jan 27, 2009 at 5:11 pm -
Hi -- Some time ago I ran across a comment recommending using <var is None instead of <var == None (also <var is not None, etc.) My own testing indicates that the former beats the latter by about 30% ...
Gerald Britton
Jan 23, 2009 at 7:58 pm
Jan 27, 2009 at 2:46 pm -
I have following packet format which I have to send over Bluetooth. packet_type (1 byte unsigned) || packet_length (1 byte unsigned) || packet_data(variable) How to construct these using python data ...
Ravi
Jan 24, 2009 at 6:55 pm
Jan 26, 2009 at 3:54 am -
Please, why isn't a set permitted as the second argument to isinstance?
Lambert, David W (S&T)
Jan 14, 2009 at 10:14 pm
Jan 16, 2009 at 2:29 pm -
Where in the world is a description of pack() for Tkinter widgets? Is it some sort of general method for all widgets? I'm looking in a few docs that use it without ever saying where it is described. ...
W. eWatson
Jan 29, 2009 at 4:12 am
Feb 9, 2009 at 11:45 am -
I just started using python last week and I'm addicted. I hate Perl. I never did learn to use it with any competence. I has to be the most obfuscated, cryptic language I've ever seen. Making it ...
Linuxguy123
Jan 24, 2009 at 2:58 am
Jan 29, 2009 at 7:15 am -
Hello, I'va read a text file into variable "a" a=open('FicheroTexto.txt','r') a.read() "a" contains all the lines of the text separated by '\n' characters. Now, I want to work with each line ...
Vsoler
Jan 25, 2009 at 1:32 pm
Jan 26, 2009 at 10:38 pm -
Hi I'm getting started with Python and in order to get good habits for Python 3, i'd like to run my Python 2.6.1 with Python 3 warning mode. When i run python -3 and execute statement then i expect ...
Aivar Annamaa
Jan 9, 2009 at 5:17 pm
Jan 13, 2009 at 6:29 am -
Hi, I have a new project, that I just released in beta (http:// www.acooke.org/lepl - a recursive decent parser with full backtracking). At the moment I am using pypi and setuptools for distribution ...
Andrew cooke
Jan 31, 2009 at 11:46 am
Feb 7, 2009 at 8:51 pm -
I have the following list of tuples: L = [(1, 2), (3, 4, 5), (6, 7)] I want to loop through the list and extract the values. The only algorithm I could think of is: ... u = None ... try: ... (k, v) = ...
Kottiyath
Jan 2, 2009 at 6:11 pm
Jan 13, 2009 at 2:07 pm -
I use the Python shell daily, plus of course normal editors to edit python scripts. They both are very useful for different purposes. But the default interactive shell isn't much handy if you want to ...
BearophileHUGS
Jan 22, 2009 at 9:10 am
Jan 27, 2009 at 6:02 pm -
Context - http://docs.python.org/3.0/reference/datamodel.html?highlight=data model#object.__iadd__ Just a suggestion I thought I'd throw out... There's a restriction in the language implementation on ...
Andrew cooke
Jan 18, 2009 at 10:56 am
Jan 24, 2009 at 8:58 am -
Hi, I'm sure the message I'm going to write will seem quite dumb to most people but I really don't understand the str/bytes/unicode differences introduced in Python 3.0 so be patient. What I'm trying ...
Giampaolo Rodola'
Jan 17, 2009 at 12:47 am
Jan 18, 2009 at 11:56 am -
I been around the list for a while and rubbed sholders with some pythonistas(some you would not beleieve if i told you) and i just don't see a community spirit here. Where are the community projects ...
R
Jan 30, 2009 at 12:21 am
Feb 2, 2009 at 8:21 pm -
18
search speed
Hi! I have written a Python program that serach for specifik customer in files (around 1000 files) the trigger is LF01 + CUSTOMERNO So a read all fils with dirchached Then a loop thru all files each ...Anders
Jan 29, 2009 at 11:51 pm
Feb 1, 2009 at 7:18 pm -
I need to make a small, relatively low-traffic site that users can create accounts on and log into. Scripts must run as cgi (no mod_python or FastCGI is available). Can anyone recommend a small and ...
Excord80
Jan 27, 2009 at 9:19 pm
Jan 29, 2009 at 6:02 pm -
Hi, I want to start Python at the client side from a web application. The app is an intranet application, and all client PCs are under our control (we can install software on them). But I don't want ...
Thomas Guettler
Jan 21, 2009 at 8:10 am
Jan 28, 2009 at 7:37 am -
Hey, Why this code is working? ... x = 88 ... f2(x) ... ... print x ... 88 Thanks.
Hussein B
Jan 14, 2009 at 9:54 am
Jan 26, 2009 at 1:48 am -
Hi all! I had touch with some different python behavior: I was tried to write into a file a string with the '\x1a' symbol, and for FreeBSD system, it gives expected result: 'before\x1aafter' but for ...
Sim.sim
Jan 10, 2009 at 3:45 pm
Jan 16, 2009 at 7:53 pm -
Hey all, The following fails for me: Traceback (most recent call last): File "<stdin ", line 1, in <module File "/usr/lib/python2.6/urllib2.py", line 124, in urlopen return _opener.open(url, data, ...
James Mills
Jan 12, 2009 at 1:59 am
Jan 14, 2009 at 10:05 pm -
If your were going to program a game in python what technologies would you use? The game is a board game with some piece animations, but no movement animation...think of a chess king exploding. The ...
Tokyo Dan
Jan 1, 2009 at 11:37 am
Jan 7, 2009 at 5:04 am -
python is great.
Nomen Nescio
Jan 3, 2009 at 1:30 pm
Feb 11, 2009 at 11:23 am -
I'm not sure this is possible, but I would like to have a list of objects A=[a,b,c,d,...,z] where, in the midst of a lot of processing I might do something like, ...
Reckoner
Jan 27, 2009 at 9:16 pm
Feb 9, 2009 at 6:45 am -
hello all, I have a strange situation where I have to load initiate an instance of a class at run-time with the name given by the user from a dropdown list. Is this possible in python and how? To ...
Krishnakant
Jan 14, 2009 at 5:46 am
Jan 15, 2009 at 2:24 am -
I'm running a WSGI app under apache/mod_wsgi and I've noticed that whenever I restart the server after making a code change it takes a very long time (like a minute) before the script is active ...
Ron Garret
Jan 28, 2009 at 9:35 pm
Jan 30, 2009 at 4:34 pm -
The collections module in Python 2.7 and Python 3.1 has gotten a new Counter class that works like bags and multisets in other languages. I've adapted it for Python2.5/2.6 so people can start using ...
Raymond Hettinger
Jan 22, 2009 at 6:11 pm
Jan 24, 2009 at 3:02 pm -
Hello all: I'm a beginner to Python (and programming altogether), and am now looking to create a program of my own. What I've got in mind is a very basic pest control program that would keep track of ...
MLT
Jan 15, 2009 at 2:28 am
Jan 17, 2009 at 2:58 am -
Hello, First post so bear with me if I'm being a numpty ... Is it me or is there something slightly counter intuitive and thus not so pythonesque about this: ... else: False ... False '' Regards, AJ
AJ Ostergaard
Jan 31, 2009 at 11:35 am
Jan 31, 2009 at 5:48 pm -
Hello, below is my first fragment of working python code. As you can see it is very java like as that is all I know. Is this the right approach to be taking? Should I be taking a different approach? ...
Elhombre
Jan 18, 2009 at 1:11 am
Jan 26, 2009 at 7:16 pm -
Hello everybody, I know how to spawn a sub-process and then wait until it completes. I'm wondering if I can do the same thing with a Python function. I would like to spawn off multiple instances of a ...
Catherine Moroney
Jan 14, 2009 at 1:02 am
Jan 15, 2009 at 5:58 am -
Hi! I asked something similar a few days ago. Is it possible to compile Python 2.6.1 with a dynamic path? I don't know how the configure command would look like. This is my current configure command ...
Googler 1 Webmaster
Jan 10, 2009 at 9:28 pm
Jan 12, 2009 at 12:22 pm -
One of my users has reported that my app is giving them scientific notation instead of decimal notation for one specific value among many that display properly. I am unable to reproduce on my end, ...
Paul McNett
Jan 8, 2009 at 1:00 am
Jan 9, 2009 at 7:14 pm
Group Overview
group | python-list |
categories | python |
discussions | 681 |
posts | 4,706 |
users | 761 |
website | python.org |
761 users for January 2009
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)