Search Discussions
-
[Neel Krishnaswami] : If we could compose generators just like functions, then the bookkeeping : can be abstracted away and the same approach will work for arbitrarily : complicated parsing tasks. ...
Graham Matthews
Jul 15, 1999 at 2:39 pm
Jul 28, 1999 at 8:16 pm -
Hello! The following program: ---------- for a in ['a', 12]: print a else: print "Empty!" ---------- prints under 1.5.2 on Linux and Solaris: ----- a 12 Empty! ----- Is it a bug, or is it just me, ...
Oleg Broytmann
Jul 27, 1999 at 12:15 pm
Aug 4, 1999 at 6:36 am -
Dear all I finally completed my website. It is fully functional and I used PostgreSQL, Python and Apache for that. Before I actually put the thing on the net, - Is there anyway I can improve the ...
Sreekant kodela
Jul 20, 1999 at 6:56 pm
Aug 26, 1999 at 3:21 am -
I decided to learn python because I heard it was a very easy language to learn. So I downloaded it and bought a couple of very expensive paperback books from o'reilly only to discover that they are ...
Mary jeanette
Jul 15, 1999 at 7:20 pm
Jul 20, 1999 at 6:31 am -
32
Python GUI
Is there a Python GUI builder out there anywhere? Sent via Deja.com http://www.deja.com/ Share what you know. Learn what you don't.Brad
Jul 26, 1999 at 5:35 pm
Aug 14, 1999 at 11:20 am -
I have added the Boehm-Demers garbage collector to Python and it works well! With the default set of extension modules all tests pass. Also I have done some benchmarks using pystone and pybench. The ...
Neil Schemenauer
Jul 16, 1999 at 7:53 pm
Jul 26, 1999 at 6:47 am -
I feel really dumb asking this question, but how do I change the current working directory? For browsing the file system I mean. I've found exec commands, but these would surely be device dependent ...
Nick Bower
Jul 10, 1999 at 11:12 pm
Jul 13, 1999 at 4:03 am -
People at my current work use MatLab or IDL for chomping data through data calculations and plotting the results in an environment that lets you get GUI's up and going very quickly (among other ...
Nick Bower
Jul 19, 1999 at 9:04 pm
Jul 23, 1999 at 4:26 am -
From: Mordy Ovits <movits at lockstar.com Alan Daniels wrote: The game Extreme Warfare was a realtime 3D videogame that used Python as its scripting language for AI and game logic. Take a good look ...
Mordy Ovits
Jul 1, 1999 at 1:13 am
Jul 6, 1999 at 8:32 pm -
Hello, I am currently experimenting with networking and want to write some games (where, obviously, two players compete over a network). Now I want to test my programs offline. One way would be to ...
Hans Nowak
Jul 7, 1999 at 10:04 pm
Jul 9, 1999 at 12:26 pm -
I'm having trouble embedding python into an application on win32. I've done it successfully for the last few months by compiling python into a dll using my own home-brew makefile. I don't want to ...
Scott Wolford
Jul 7, 1999 at 9:07 pm
Jul 9, 1999 at 9:22 pm -
I need a Windows equivalent of this class for a client I'm writing. class SessionConnection: # Encapsulate the line-by-line level of a session with a server. # This class requires Unix services. ...
Eric S. Raymond
Jul 29, 1999 at 8:32 pm
Jul 31, 1999 at 11:46 pm -
When programming in Perl or Python, I am using a header like the following on an executable file to cause the shell (bash or csh) to run the scripts as Perl/Python files: #!/usr/bin/perl for Perl and ...
Rob
Jul 26, 1999 at 9:38 pm
Aug 6, 1999 at 11:36 pm -
Recently I found myself wishing that Python had automatic getters and setters like CLOS. For those who are not familiar, CLOS (and Dylan) create a "getter" and "setter" method for each attribute of a ...
Neil Schemenauer
Jul 15, 1999 at 5:33 am
Jul 18, 1999 at 7:42 pm -
I've received enough hostile mail from Windows users not understanding how to unpack .tgz archives (er, WinZip works for me...) that I will be making most of the documentation packages available as ...
Fred L. Drake
Jul 23, 1999 at 4:56 pm
Jul 27, 1999 at 12:04 am -
I need to turn a few python programs into Windows NT services. Has anyone on this newsgroup got any advice for that? I know about SRVANY.EXE from the NT resource kit. Is saw there is a module called ...
Haimo G. Zobernig
Jul 13, 1999 at 8:51 am
Jul 15, 1999 at 4:33 pm -
Compiling python 1.5.2 on Linux Mandrake 6.0, the "make test" step fails because it gets an OverflowError during test_types.py on the following line: int(long(-sys.maxint-1)) test_long.py fails also ...
Chad Netzer
Jul 22, 1999 at 8:54 am
Jul 24, 1999 at 6:07 am -
Hi all, Lately, an old issue about long numbers and bitcounts showed up again. I argued something about "if at all, then build an extension with fast multiply". I want to retract this. Python's C ...
Christian Tismer
Jul 18, 1999 at 5:30 pm
Jul 21, 1999 at 11:06 pm -
Hello, I am trying to generate a JTree (in JPython) out of some Data I have. The data I have is structured in classes which have a list of classes that have a list of classes and so on. Now I want to ...
Ralph Gauges
Jul 13, 1999 at 2:13 pm
Jul 15, 1999 at 5:35 am -
I have two lists and would like to merge them into a dictionary, with one list forming the keywords and the other the values in the dictionary. How could this be done? "map(None, keyword_list, ...
Chris Frost
Jul 21, 1999 at 2:19 am
Jul 23, 1999 at 4:44 am -
After seeing the "Brensenham line algorithm" post above, I'm curious if there is a public "python code repository" (something akin to CPAN) out there? Or does Starship assume that role? -Drew
Drew McDowell
Jul 9, 1999 at 6:55 pm
Jul 11, 1999 at 7:40 pm -
Hi, Is it really necesarry for shelve to make such large files? Have a look at this: /tmp python Python 1.5.2 (#1, Apr 18 1999, 00:16:12) [GCC 2.7.2.3] on linux2 Copyright 1991-1995 Stichting ...
Gerrit Holl
Jul 1, 1999 at 7:14 pm
Jul 2, 1999 at 7:45 pm -
12
os.name
High, someone working on a more specific version of os.name or better: something inside of 'sys.builtin_module_names'. It's because I need to differ between Win95, Win98 and WinNT.... Thanx, HolgerHolger Jannsen
Jul 29, 1999 at 2:08 pm
Aug 2, 1999 at 1:00 pm -
G'day mates. Here's a snippet for the repository: # The function bitcount() will count the number # of bits in a number, iterating at most as many # times as the number of bits. # def bitcount(x): n ...
Klaus Alexander Seistrup
Jul 16, 1999 at 3:43 pm
Jul 17, 1999 at 7:20 pm -
I am aiming to use Marc-Andr? Lemburg's mxTextTools package for an application in my (hah!) spare time. Being me, the first thing I've set out to do is to provide the missing meta-language so that I ...
Tony J. Ibbs (Tibs)
Jul 15, 1999 at 11:43 am
Jul 17, 1999 at 4:34 am -
I'm a new user and Python looks great. Why both having tuples and lists? As far as I can see there're the same, but tuples are read only..? Have I missed something in the tutorial? Also, has anyone ...
Nick
Jul 1, 1999 at 7:21 pm
Jul 5, 1999 at 8:11 am -
Well, I think Roger meant hack, not crack. Have a look at Eric S Raymonds "How to become an hacker FAQ" at http://www.tuxedo.org/~esr/ (and some further). Hacking is good, cracking is bad. I also ...
Gerrit Holl
Jul 21, 1999 at 1:46 pm
Aug 2, 1999 at 4:54 pm -
I've got a couple of pyCOM things that are kicking my @$$! 1. Trying to wrap a list of instances into a util.Collection. All instances have been prepped with _public_methods_ and _public_attrs_ and ...
Karl Putland
Jul 23, 1999 at 7:32 am
Jul 29, 1999 at 8:54 pm -
http://www.python.org/ftp/python/contrib/System/Cyclops.py # Module Cyclops version 0.9.4. # Released to the public domain 18-Jul-1999, # by Tim Peters (tim_one at email.msn.com). Cyclops.py ...
Tim Peters
Jul 20, 1999 at 2:28 am
Jul 26, 1999 at 3:57 am -
this is a question for all of the VIMers out there. is there any way to get [# ]# style logical python block jumping to work for python? (to make up for the lack of {} in python) cheers, Angus.
Angus MacKay
Jul 5, 1999 at 10:41 pm
Jul 13, 1999 at 9:53 pm -
Hi! A newbie to Python (though currently coding in Delphi), I'm having a little difficulty tracking down stuff, although I have the tutorial and manuals. Where is the best place to get more info, and ...
Dani Epstein
Jul 22, 1999 at 11:47 pm
Jul 28, 1999 at 1:24 pm -
hello, I am not new to programming but new to python...i want to know how do i call functions from the prompt.... joyce
Joyce Stack
Jul 20, 1999 at 12:05 am
Jul 23, 1999 at 7:22 am -
One feature of lisp (emacs lisp actually) that I think is pretty cool is the "hooks". A hook is basically unevaluated code that will be run by eval later. I suspect python lacks this capability. As I ...
Nbecker
Jul 20, 1999 at 12:10 pm
Jul 22, 1999 at 6:48 am -
From: catlee at my-deja.com Subject: Killing a thread Organization: Deja.com - Share what you know. Learn what you don't. Hi, I'm writing a progrma where some user code is executed in a restricted ...
UUCP
Jul 19, 1999 at 3:33 am
Jul 20, 1999 at 5:06 am -
From: Pierre Fortin <pfortin at cisco.com Just ran into a situation which can be summarized as follows: list = [ 0,1,2,3,4 ] list[<0..4 ] returns the appropriate item list[m] where m is = len(list) ...
Pierre Fortin
Jul 2, 1999 at 8:38 pm
Jul 8, 1999 at 4:18 am -
From: "Tim Peters" [Pierrette Serrand] Carrots and sticks. And why wouldn't you? It's free! More than a year passed between 1.5.1 and 1.5.2, spanning hundreds of little improvements and bugfixes, ...
Tim Peters
Jul 3, 1999 at 10:37 am
Jul 5, 1999 at 4:22 am -
I am a Linux user writing a program for somebody that will use it on a Windows platform. In Linux I use the following to redirect printing to the printer: drukker = sys.stdout drukker = ...
Johann Spies
Jul 31, 1999 at 6:14 pm
Aug 10, 1999 at 7:53 pm -
Dear Pythonographers - Here is a very odd little something I have written in the process of trying to make ModuleWriter module (see previous message) deal with "documentary" strings. Takes a ...
Isidor
Jul 21, 1999 at 2:00 pm
Jul 29, 1999 at 9:55 am -
I've got a dictionary of items which I will sometimes want random access to, but sometimes I'll want to be able to step through the items in a fixed order as well. Any good way to do that? The best ...
Roy Smith
Jul 25, 1999 at 5:00 pm
Jul 27, 1999 at 9:00 pm -
Hi, I'm relatively new to python and am using it (and Tkinter, VTK, NumPy, numpyio, and some other modules that I've probably forgotten) to write a volume/slice visualization package. The program has ...
Heather A. Drury
Jul 21, 1999 at 4:31 pm
Jul 25, 1999 at 12:22 am -
What does it means that GADFLY is Relational ? How can I make relations between tables in database? Can I use KEYS
Darko Cvagic
Jul 21, 1999 at 12:09 pm
Jul 23, 1999 at 1:30 pm -
From: Eric Kidd <eric.kidd at pobox.com I'd like to write a Python application which uses either curses, ncurses, slang or a similar tty interface library. Unfortunately, the built-in curses module ...
Eric Kidd
Jul 3, 1999 at 10:02 am
Jul 9, 1999 at 6:32 pm -
I have an unbounded number of worker threads which occasionally require access to a unique server thread. I can easily mutex access to the server thread, but is there any obvious/easy way to ensure ...
Robin Becker
Jul 2, 1999 at 5:03 pm
Jul 4, 1999 at 3:34 pm -
Hello, is there an easy way to print color strings in python? A function like printcolor('brightyellow', 'red', 'spam'), that finds out on what kind of terminal you are and prints it to stdout? ...
Gerrit Holl
Jul 1, 1999 at 7:35 pm
Jul 2, 1999 at 2:27 pm -
Hi! I wanted to embed Python into C. I looked for the libraries to link them to my program. But I haven't the libraries. I looked for it in the Internet and everywhere, but never found. Please give ...
Sven Drescher
Jul 30, 1999 at 12:58 pm
Aug 3, 1999 at 3:12 pm -
From: "Ken Liu" <kyliu at idiomtech.com I've been using the informixdb module (version 1.2a1) with python1.5.1 for a while now with no problems. Just a few days ago we installed python1.5.2, and now ...
Ken Liu
Jul 2, 1999 at 6:25 pm
Jul 23, 1999 at 1:08 pm -
Hi ! Abstract : [Q]How to check the type of an instance before(after?) sending it to a method... Here is my source : class ClassA ... class ClassB : def myMethod(self, anInstance) ... and myMethod ...
Olivier Deckmyn
Jul 19, 1999 at 10:49 am
Jul 19, 1999 at 1:23 pm -
Hello, I just downloaded and built Python v1.51 for the Sun Solaris platform. All the tests went well and I created some simple scripts to verify its operation. One question is, how do I exit python? ...
Velasquez, Carlos
Jul 14, 1999 at 6:36 pm
Jul 19, 1999 at 10:51 am -
I am looking for a way to access Paradox tables from Python without using ODBC. Does anyone have any ideas? Sent via Deja.com http://www.deja.com/ Share what you know. Learn what you don't.
Kaine
Jul 8, 1999 at 5:24 pm
Jul 14, 1999 at 8:17 pm -
Hi! I need to generate some hompages and cgi-script for database access, forms and such and want to do it in Python, of course. As it is i have no experience with it's WWW-related stuff ... There are ...
Thomas Ackermann
Jul 8, 1999 at 7:22 pm
Jul 14, 1999 at 4:00 am
Group Overview
group | python-list |
categories | python |
discussions | 482 |
posts | 2,311 |
users | 638 |
website | python.org |
638 users for July 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)