Search Discussions
-
217
Python 2.0
I read the following interesting snippet at http://www.python.org/workshops/1997-10/proceedings/hugunin.html I was wondering if this is seriously being considered -- that is implementing Python 2.0 ...Graham Matthews
May 27, 1999 at 7:33 pm
Jun 14, 1999 at 7:42 am -
I've just delved headfirst into what I'm trying to convince myself is a small project. In this article I will throw around some ideas; forgive the high rant-factor but it's kinda late. I would be ...
Alexander Staubo
May 19, 1999 at 2:39 am
Jun 2, 1999 at 10:05 pm -
Hi out there, I'm a great fan of python and try to use it as often as possible. Based on that, I'm looking for some "fan-articles" e.g. Python T-shirts Python pens Python coffee mugs ... Is there ...
Dr. Peter Stoehr
May 1, 1999 at 9:25 pm
May 15, 1999 at 4:15 pm -
Last night, after reading the latest assignment in expressions thread, I went and hacked together a patch which implements the proposed while: ... and while test: ... form of the while loop. The ...
Corran Webster
May 19, 1999 at 12:05 am
Jun 1, 1999 at 4:44 am -
If you've been following the "Python is too slow" thread of late, you might have noticed my sneaky bytecode rewriting functions. Well, they've been rewritten, added to and generally banged on, and ...
Michael Hudson
May 12, 1999 at 7:28 pm
May 17, 1999 at 11:40 am -
I see that the FAQ suggest "a and b or c" or similar for the equivalent of the C ?: construct, but the solutions are not good, and rather ugly for being Python code. I guess ?: is tricky to implement ...
News.eunet.no
May 25, 1999 at 3:40 pm
Jun 4, 1999 at 12:04 pm -
My company is mostly a VB shop. Web Development has gotten away with Perl in a corner but we are now being urged to move to ASP. I am pushing for PerlScript interfacing heavily with COM. I would like ...
Roy Stephan
May 17, 1999 at 8:36 pm
May 23, 1999 at 6:33 pm -
I've been mucking around with the bytecodehacks modules of Michael Hudson this past weekend, and have used it to hack up an ad hoc bytecode optimiser. I'm posting this to stimulate a bit of interest ...
Corran Webster
May 17, 1999 at 11:13 pm
Jun 1, 1999 at 3:45 am -
Hi all, Every so often after a minor or major Python release I like to ask the gurus of this group about implementing Design By Contract mechanisms (a-la Eiffel) in Python. Has anything changed in ...
Stuart Hungerford
May 7, 1999 at 12:25 pm
May 15, 1999 at 3:48 pm -
Hi all, I would like to give you a summary of what I think would be the way to go to get a faster python ( and world domination ;-) ). Also I don't know if everything is feasible because I haven't ...
Markus Kohler
May 4, 1999 at 11:25 am
May 17, 1999 at 8:44 am -
Hello all, I've just recently started learning Python and am basically very impressed. One thing I can't figure out is how to do static variables though. So, for example how could you do the ...
Stephen Allison
May 4, 1999 at 5:04 pm
May 10, 1999 at 8:19 pm -
Am I missing something ? ... def __init__(self, **parms): ... pass ... ... def __init__(self, **parms): ... A.__init__(self,parms) ... <__main__.A instance at 7f85a0 Traceback (innermost last): File ...
Darrell
May 25, 1999 at 6:40 pm
Jun 14, 1999 at 6:45 am -
It's... an embarassing question. Yes folks, I'm writing my first Python program (a text to HTML converter) and I have a slight misunderstanding with the variable scoping... Let me present some code ...
Michael Dingler
May 26, 1999 at 6:51 pm
May 31, 1999 at 4:34 am -
Hi. This is a rather flame-bait-ic mail about expression assignments in Python. I am sending it to get more opinions, which will be put in, and hopefully creating a ``current opinions'' document. It ...
Moshe Zadka
May 11, 1999 at 8:30 pm
May 15, 1999 at 3:47 pm -
Having nothing better to do one day, I whipped up a quick class that transforms functions into "listable" functions i.e. functions that automatically map themselves over a sequence. The idea was ...
Michael Vanier
May 12, 1999 at 11:30 pm
May 20, 1999 at 2:05 am -
i am working on a www site were our costumer wants to create a (printable) document for his customer. some data for the document (name, address, etc.) will be given using input fields. the whole damn ...
Kaweh Kazemi
May 7, 1999 at 3:00 pm
May 13, 1999 at 6:34 am -
I've been considering learning Python as a means of getting insight into OO thinking. I have been reluctant to by the snake or rat books because I have read that future versions of Python -- mayber ...
Phil Voris
May 2, 1999 at 6:03 am
May 8, 1999 at 3:29 am -
I'm trying to cook a minimalist Python install, and I find that python -O won't run without .pyc's in-place, even when there are pyo's. I thought pyc's were the straight-compiled version, pyo's were ...
Randall Hopper
May 26, 1999 at 6:01 pm
Jul 9, 1999 at 11:55 am -
Does Python 1.5.2 support to read/write files larger than 2GB under Solaris 7 ? _\|//_ (' O-O ') ------------------------------ooO-(_)-Ooo-------------------------------------- Andreas Jung, ...
Andreas Jung
May 24, 1999 at 1:50 pm
May 28, 1999 at 3:23 pm -
Greetings, Pythoners... I've been using Python for about five months, both at work and at home, and have found it to be a pleasure. However (and you probably guessed this was coming... isn't everyone ...
David Cuthbert
May 23, 1999 at 7:32 pm
May 27, 1999 at 2:49 pm -
We have the following problem: The initialization function of the ILU extension module gets called more than once when used within a Python COM server and called from Visual Basic (and this makes ILU ...
Robin Boerdijk
May 21, 1999 at 12:51 pm
May 27, 1999 at 5:05 pm -
Long time Python user, but Unix newbie, seeks solution to following: I have a (C++) program which I would like users to be able to interact with via CGI. But this program has a lot of data in memory, ...
Joe Strout
May 20, 1999 at 7:39 pm
May 21, 1999 at 5:53 pm -
I tried to learn and use python a week ago, and wrote a small application. When it run the loop: for k in range(dimension): for i in range(dimension): for j in range(dimension): for h in ...
SC Zhong
May 10, 1999 at 8:06 am
May 19, 1999 at 1:47 pm -
Python gods and godesses, Being relatively new to Python, I am trying to do something using re and cannot figure out the right pattern to do what I want. The input that I am parsing is a typical ...
Bob Horvath
May 8, 1999 at 3:58 am
May 11, 1999 at 6:21 pm -
I would like to suggest a package organization for the standard modules. The package directories should all be in sys.path so that older modules would continue to work. Import syntax could become ...
Paul Prescod
May 1, 1999 at 7:57 pm
May 5, 1999 at 10:38 pm -
What's the function name for overriding the <= operator? Thanks a lot Joe
Joseph Kuan
May 19, 1999 at 8:23 am
Jun 3, 1999 at 9:34 am -
Hi, I've just started looking into Python as a possible scripting language for a game we're developing. The design of Python looks great, and the simplicity, portability, and embeddability (is that a ...
Tim Browse
May 21, 1999 at 4:48 pm
May 30, 1999 at 9:08 pm -
This is something I was wondering. I am relatively new to Python, and I have not yet dabbled much in any GUI goo. I am familiar with Tk, so Tkinter sounded very interesting until I heard about ...
Bob Horvath
May 18, 1999 at 1:08 pm
May 26, 1999 at 7:22 pm -
Hi. This question barely touches on Python, but it only comes up because I need a really good GUI for my Python application. Other than for basic UI elements such as buttons and listboxes, how ...
Sarino Suon
May 18, 1999 at 2:54 am
May 26, 1999 at 4:45 am -
Hi! I need to read some PDF files and look through them for some keywords I have in a list. Is there a python module to read inside a PDF file? If there isn't one, is there one in C that you may be ...
Bruno Mattarollo
May 4, 1999 at 7:05 pm
May 12, 1999 at 10:38 pm -
Hi I'm working on Windows NT, MS Developer Studio and are trying to embed the Python interprter in an application. Now I have some question about the Python/C API. In the Python/C API Reference ...
Thomas S. Strinnhed
May 5, 1999 at 1:26 pm
May 27, 1999 at 6:53 am -
Pentium III chip with the individual serial number that can track your web surfing and buying habits can now have the ID number turned on and off by software. Following some links I found the ...
Intel No Privacy
May 5, 1999 at 9:07 pm
May 19, 1999 at 9:56 am -
Environment: Solaris 2.5.1, gcc The following script chews up cycles (as expected) as well as memory (megabytes every few seconds). Does anyone know why? ...
Greg McFarlane
May 26, 1999 at 6:06 am
May 27, 1999 at 8:37 am -
... I just started programming in Python (today!) I want to run a few OS commands from python (on Win NT), but I cannot find a way to wait for the commands to finish. Source: ** os.system ...
Christian Tellefsen
May 21, 1999 at 11:48 am
May 27, 1999 at 8:12 am -
After doing a "make; make test", I get a failure in testing test_time.py. Here's the output when I run the test on its own: tradecenter:/usr/src/python# python Lib/test/test_time.py Traceback ...
Alexander Staubo
May 11, 1999 at 7:29 pm
May 22, 1999 at 1:58 pm -
Python is very flexible about importing modules from different locations. For example: try: from MyPackage.MySubPackage import MyModule except ImportError: import MyModule MyInstance = ...
Jeffrey Kunce
May 17, 1999 at 6:26 pm
May 20, 1999 at 2:48 pm -
Hi all, I've been reading the recently published book, "Programming Web Graphics with Perl and Gnu Software" by Wallace, from O'Reilly books. It's an excellent collection of topics for generating ...
Stuart Hungerford
May 7, 1999 at 4:54 am
May 10, 1999 at 3:21 pm -
I'm running v1.5.2 on a Win95 box. I tried wsgui.py and got the following error message: ... File "C:\ ... \WSGUI.PY", line 165, in go self.sucker.rootdir = os.path.dirname( [ ...
David Friedman
May 31, 1999 at 2:06 am
Jun 13, 2003 at 11:41 am -
Hi, I've played with Python a little on Unix and have just started to use it at work on NT - we're shifting from Perl for automating some tasks. So, installing 1.5.2 I got Idle (I have 1.5.1 at home ...
Andrew Cooke
May 29, 1999 at 9:28 pm
Jun 6, 1999 at 3:25 am -
Hi, I've been using Python for a few months now, and I have a couple of things I havn't figured out how to do, that would be handy 1) loop a known number of times, without creating a list of indexes: ...
Cbarker
May 24, 1999 at 7:16 pm
May 27, 1999 at 3:08 am -
I?ve just learned Python this weekend, and I got to the Tk part and stopped. I?d rather use pygtk, for various reasons. But I don?t know how to use gtk in C either. But that?s ok; I don?t know ...
Achatham5
May 24, 1999 at 6:47 pm
May 26, 1999 at 3:57 pm -
Newbie here. I'm writing a simple drawing program using Tk. I would like to treat the drawn elements as a list of individual instantiations of drawing classes -- line, blob, fractal, etc. I would ...
Kiki
May 25, 1999 at 1:36 am
May 26, 1999 at 12:45 am -
I would like to write a Python script that would read an HTML document and extract table contents from it. Eg. each table could be a list of tuples with data from the rows. I thought htmllib would ...
Michael Spalinski
May 23, 1999 at 1:14 pm
May 24, 1999 at 7:50 pm -
Hi. Could someone please point me to some examples of Gnu C++ code wrapped up for Python? I am finding the documents rather heavy going, because they don't give any good examples. I started with the ...
Alex
May 11, 1999 at 10:32 pm
May 22, 1999 at 2:09 pm -
I want to run a python program, where one module causes another Python module to execute, where the pathname of the second module is known relative to the first module. i.e. I have: ...
Phil Hunt
May 10, 1999 at 9:24 pm
May 17, 1999 at 4:47 pm -
Does anyone have hardware acceleration working with Linux yet? I have been waiting for over a year -- it is always reputed to be just around the corner. If anyone wants to do complete 3d toy ...
Srenner
May 10, 1999 at 8:10 pm
May 12, 1999 at 12:02 pm -
Hi folks, What's the best way from a python program to start another program in the background and: - redirect stdout/stderr to a file - get the process ID of the started program. It seems that: - ...
Michael Olivier
May 6, 1999 at 5:13 pm
May 7, 1999 at 5:40 pm -
Hiya I am currently getting into the geeky art of home automation, using an activehome computer interface to control various appliances in the house. Now that I have got it working well with the ...
Richard Wall
May 18, 1999 at 12:41 pm
May 25, 1999 at 5:09 pm -
Hello, everybody: I have a problem with Tkinter when I am working with a project. I made a window showing on the screen, but I found if I enlarge the window by mouse, it gets ugly, so I want to ...
Huaming Wang
May 20, 1999 at 3:39 pm
May 21, 1999 at 2:32 pm -
Dear all, Currently we use WinBatch to automate some tests and productions application under Windows NT. One year ago, we switched from Perl to Pyton as script language under unix. I wonder if it is ...
Christian Lemer
May 17, 1999 at 2:11 pm
May 21, 1999 at 12:48 am
Group Overview
group | python-list |
categories | python |
discussions | 463 |
posts | 2,184 |
users | 559 |
website | python.org |
559 users for May 1999
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)