Search Discussions
-
came across this page searching feedster. dont know whether this is the official resdesign or just a proposal; but the mockups look very nice. http://www.pollenation.net/journal/index.php?p7&c=1 main ...
Rt lange
Sep 7, 2003 at 1:37 am
Sep 11, 2003 at 6:25 pm -
Please comment on the new PEP for reverse iteration methods. Basically, the idea looks like this: for i in xrange(10).iter_backwards(): # 9,8,7,6,5,4,3,2,1,0 <do something with i The HTML version is ...
Raymond Hettinger
Sep 25, 2003 at 12:58 am
Sep 29, 2003 at 5:35 pm -
Hi All, I am going to stay in hospital for a week or so (nothing serious), and am trying to find a book or two to read there. As I have not come across anything spectacular recently (except Python in ...
Patrick Useldinger
Sep 4, 2003 at 6:16 pm
Sep 7, 2003 at 10:14 pm -
[Moved to python-list at python.org, where this thread belongs] Harri Pesonen wrote: Lately, I've been considering an alternative to this line of thinking. I've been wondering whether threads are ...
Shane Hathaway
Sep 11, 2003 at 6:50 pm
Sep 17, 2003 at 7:32 pm -
Hello, I'm a newbie Python user, a systems administrator - I've been trying to switch from Perl to Python for administrative tasks - and one thing I cannot understand so far is why I need the special ...
Grzegorz Staniak
Sep 5, 2003 at 1:58 pm
Sep 11, 2003 at 2:55 pm -
Hi everyone, I'm having some trouble sorting lists. I suspect this might have something to do with locale settings and/or character encoding/unicode. Consider the following example, text containing ...
Erlend Fuglum
Sep 21, 2003 at 11:32 am
Sep 29, 2003 at 6:08 pm -
On behalf of the Python development team and the Python community, I'm happy to announce the release of Python 2.3.1 (final). Python 2.3.1 is a pure bug fix release of Python 2.3, released in late ...
Anthony Baxter
Sep 24, 2003 at 8:02 am
Sep 27, 2003 at 4:04 pm -
Is there a python module that includes functions for working with prime numbers? I mainly need A function that returns the Nth prime number and that returns how many prime numbers are less than N, ...
Dag
Sep 29, 2003 at 2:53 pm
Oct 3, 2003 at 9:52 am -
Hi, there is another famous book 'Writing solid code' but does it apply to Python ? Or it's usable only by Microsoft C programmers ? The author seems to be an ex-Microsoft guy ! Thanks , post400
Post400
Sep 3, 2003 at 11:39 am
Sep 16, 2003 at 11:05 am -
I have a question that is not directly Python-related. But I thought I'd ask the most erudite group that I know... :-) When did Windows start accepting the forward slash as a path separator ...
Stephen Ferg
Sep 25, 2003 at 11:50 pm
Sep 30, 2003 at 4:22 am -
Here is a discussion draft of a potential PEP. The ideas grew out of the discussion on pep-284. Comments are invited. Dart throwing is optional. Raymond Hettinger ...
Raymond Hettinger
Sep 24, 2003 at 12:30 am
Sep 25, 2003 at 5:40 pm -
Hey all, I just realized you can very easily implement a sequence grouping function using Python 2.3's fancy slicing support: def group(values, size): return map(None, *[values[i::size] for i in ...
Dave Benjamin
Sep 30, 2003 at 7:44 am
Oct 6, 2003 at 5:09 pm -
Dear all, My college used C for beginner course and use Java to demostrate OO concept. Anyway, I tried python and found that it is a very good language. I think many people spend time on Java and ...
Yeung_too
Sep 5, 2003 at 3:24 pm
Sep 7, 2003 at 2:36 pm -
Now that rexec is gone, is there any code or information available on executing Python in a restricted environment? And before I roll my own solution, exactly where the security holes in rexec ...
Rainer Deyke
Sep 27, 2003 at 4:44 am
Oct 2, 2003 at 1:22 pm -
In article <mailman.1062997392.14538.python-list at python.org , Graham Fawcett wrote: Many people, me included, won't follow tinyurl links; please provide a standard URL, too. DO NOT USE ...
Aahz
Sep 8, 2003 at 4:43 pm
Sep 9, 2003 at 11:44 pm -
I've just about convinced myself there is no good, clean solution to the following puzzle. I wonder if you agree. 1. My app has a module called leoGlobals that contains often-used global functions. ...
Edward K. Ream
Sep 29, 2003 at 4:31 pm
Oct 8, 2003 at 2:51 am -
While trying to print a none empty list, I accidentaly put an "else" statement with a "for" instead of "if". Here is what I had: if ( len(mylist) 0) : for x,y in mylist: print x,y else: print "Empty ...
Invalid User
Sep 25, 2003 at 1:31 pm
Oct 2, 2003 at 1:59 pm -
Has someone got a Python routine or module which converts Unicode strings to lowercase (or uppercase)? What I actually need to do is to compare a number of strings in a case-insensitive manner, so I ...
Hallvard B Furuseth (nospam nospam)
Sep 19, 2003 at 11:15 am
Sep 26, 2003 at 9:01 pm -
Hi, How well is Python suited for developing database based applications? I am new to Python so please bear with me if some of the questions are too simple. I specifically have the following ...
Ubaidullah Nubar
Sep 12, 2003 at 1:09 pm
Oct 15, 2003 at 8:44 pm -
Hi, I am writing a program that has to instantiate a class from which I don't know the name until runtime. That leads to two problems for me. 1. How to do the import? I didn't find a way to give a ...
Marco Herrn
Sep 9, 2003 at 7:35 pm
Sep 30, 2003 at 7:49 pm -
I'm looking for a good place for Python documentation. I'm really lost on why it's so hard to find anything when it comes to me looking up a particular function in Python. My example would be the ...
Daniel R. Smorey Jr.
Sep 1, 2003 at 4:41 am
Sep 2, 2003 at 7:42 am -
hello there. I've been searching the web (including the www.python.org :) but in vain of finding recent documentation for the python MOP. I see some information on python 1.5---is this the best and ...
Kasper graversen
Sep 12, 2003 at 9:54 am
Sep 22, 2003 at 2:46 pm -
Is there a python equivalent of the C ternery operator? I.e.: fred = (x == 1) ? 12 : 15 If not, what's the best way to construct the same logic? Regards
Andrew Chalk
Sep 7, 2003 at 4:53 pm
Sep 9, 2003 at 7:21 pm -
Howdy, I want to know how to tell if a forked process is done. Actually, my real question is that I want to run a shell script inside of a python script, and after the shell script has finished ...
John Lin
Sep 23, 2003 at 11:47 pm
Sep 25, 2003 at 4:22 pm -
This may have been asked before but I can't find it. If I have a rectangular list of lists, say, l = [[1,10],[2,20],[3,30]], is there a handy syntax for retrieving the ith item of every sublist? I ...
Hilde Roth
Sep 16, 2003 at 6:15 pm
Sep 23, 2003 at 2:41 pm -
Hi I would like to announce, for real this time, the release of BlackAdder V1.0.0. We have just finished our weekly conference during which I was give specific instructions by Shawn Gordon to make ...
John Dean
Sep 15, 2003 at 5:33 pm
Sep 19, 2003 at 11:29 pm -
Can anybody explain this: Python 2.3 (#46, Jul 29 2003, 18:54:32) [MSC v.1200 32 bit (Intel)] on win32 Type "help", "copyright", "credits" or "license" for more information. <stdin :1: SyntaxWarning: ...
M-a-S
Sep 16, 2003 at 6:35 pm
Sep 18, 2003 at 8:34 am -
The yield statement looks to be a big step toward some kind of lightweight concurrency-oriented programming in python. Is there any similarly nice way to do the opposite of yield, just sit around ...
Achrist
Sep 10, 2003 at 7:40 pm
Sep 17, 2003 at 11:09 am -
Hi, After upgrading my Python interpreter to 2.3.1 I constantly get warnings like this: DeprecationWarning: Non-ASCII character '\xe6' in file mumble.py on line 2, but no encoding declared; see ...
Klaus Alexander Seistrup
Sep 29, 2003 at 12:51 pm
Oct 2, 2003 at 6:31 pm -
Has anyone suggested introducing a mutable string type (yes, of course) and distinguishing them from standard strings by the quote type - single or double? As far as I know ' and " are currently ...
Gordon Airport
Sep 20, 2003 at 5:40 pm
Sep 25, 2003 at 8:10 pm -
Hi! I must have been searching in the wrong places or with the wrong keywords but I couldn't find out how to implement something such as what is done by the threading module on Windows (95, 98 and XP ...
Jorge Godoy
Sep 29, 2003 at 12:00 pm
Oct 4, 2003 at 12:11 pm -
Hi all, after my unsuccessful try to run Apache 2 with mod_python and Python 2.3, I am looking for an alternative approach. My aim is to write a small web-based application: Python - the solution ...
Patrick Useldinger
Sep 11, 2003 at 10:04 pm
Sep 20, 2003 at 4:32 pm -
I was just writing some code which did date/time manipulations, and I found that the Python 2.3 datetime module does not supply a number of fairly basic functions. I understand the reasoning (the ...
Paul Moore
Sep 15, 2003 at 3:07 pm
Sep 17, 2003 at 8:05 am -
I just installed Python 2.3 (upgrading from 2.1). Version 2.3 is noticably faster and the automatic conversion to long integers is very handy: 18446744073709551616 But if I want to know how many ...
Mensanator
Sep 24, 2003 at 1:04 am
Oct 1, 2003 at 10:19 am -
I should like to search certain characters in a string and when they are found, I want to replace other characters in other strings that are at the same position (for a very simply mastermind game) ...
Jblazi
Sep 20, 2003 at 10:51 am
Sep 25, 2003 at 10:24 am -
I've been thinking that a good Python mascot might help in raising public awareness of Python. The problem with a snake as a mascot is that it is not anthropomorphic enough. An effective mascot has ...
Stephen Ferg
Sep 29, 2003 at 1:37 am
Oct 28, 2003 at 2:03 pm -
15
Using TCP/IP
How do I find out my own IP number (using Pythoi of course). And how do I send/receive data to/from andother TCP/IP socket (of known ip number)? I mean: which module do I have to use for that? TIA, ...Jblazi
Sep 29, 2003 at 7:19 pm
Oct 8, 2003 at 11:11 am -
Hi, I'm new to python, so excuse me if i'm asking something dumb. Does python provide a mechanism to implement virtual functions? Can you please give a code snippet also...:) Thanx in advance -Prabu.
Prabu
Sep 30, 2003 at 2:53 pm
Oct 2, 2003 at 2:58 am -
Can't find it. I mean something like: 5.35 5.35! Not 5.3500000000000001 neither 5.34999999999999999999. I think this is not a rare thing, but I can't find it in the standar library neither the ...
Batista, Facundo
Sep 17, 2003 at 6:28 pm
Sep 22, 2003 at 10:55 am -
I couldn't find one. (Hi Martin ;-) Regards, Bengt Richter
Bengt Richter
Sep 7, 2003 at 11:29 pm
Sep 10, 2003 at 10:24 am -
Hi, under Python 2.2.2: Traceback (most recent call last): File "<stdin ", line 1, in ? TypeError: unhashable type 136775584 Can anybody explain this? Greets, Stefan
Stefan Fleiter
Sep 2, 2003 at 6:36 pm
Sep 8, 2003 at 4:07 pm -
Hi,all I use wxPython make a bittorrent client. I find wxPython very slow and use many many memory. When app start, it need 19MB memory. I only use common GUI components. Python is a really good ...
Ulysses
Sep 3, 2003 at 1:32 pm
Sep 5, 2003 at 6:17 am -
Is there a better way to append certain chars in a string with a backslash that the example below? chr = "#$%^&_{}" # special chars to look out for str = "123 45^ & 00 0_" # string to convert n = "" ...
Tertius
Sep 30, 2003 at 7:46 am
Oct 3, 2003 at 12:46 am -
I am creating a dialog in wxPython for log in purposes. Basically when the user clicks the ok button, the dialog box saves the user name and password as class attributes. Then as long as the dialog ...
Todd Johnson
Sep 22, 2003 at 9:37 pm
Oct 2, 2003 at 5:13 pm -
I found that when using negative indices, the slice object passed to __getitem__ depends on the number of slices. An example to clarify: class a: def __getitem__(self, index): return index Traceback ...
Roberto A. F. De Almeida
Sep 26, 2003 at 8:45 pm
Sep 30, 2003 at 2:41 pm -
All my mailboxes have been filling up with files of about 130k to 150k, no doubt copies of some immensely popular virus. So, I've no doubt lost lots of real mail because of "mailbox full" conditions ...
Alex Martelli
Sep 20, 2003 at 2:03 pm
Sep 23, 2003 at 5:02 pm -
Ok, I miss the idiom that my other languages use, something like: while( foo = getmore()){ process(foo); } I can't seem to do this in python without gagging: foo = getmore() while foo: process(foo) ...
Tobiah
Sep 14, 2003 at 9:50 pm
Sep 19, 2003 at 3:21 pm -
I don't know if this is really a Python question of a MySQL question, but i am hopen that there is enough overlap that someone can help me ;-) I have a unit test suite for our server that loads a ...
Richard Wesley
Sep 4, 2003 at 8:35 pm
Sep 12, 2003 at 9:55 am -
13
IDE Python
Hello, I search Python IDE with Code Intellisense Thanks JEANJean.kasapyan
Sep 30, 2003 at 9:28 pm
Oct 7, 2003 at 3:59 pm -
I want to write an NT service that will intercept any outgoing smtp traffic, like Norton Antivirus does. Can anyone tell me how I can do something like this in Python? I do not know how to intercept ...
Scott Hathaway
Sep 30, 2003 at 1:18 pm
Oct 1, 2003 at 8:03 pm
Group Overview
group | python-list |
categories | python |
discussions | 813 |
posts | 4,178 |
users | 964 |
website | python.org |
964 users for September 2003
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)