Is there a way to take a priori knowledge out of field definitions?

2006-09-10 Thread Hendrik van Rooyen
Hi, It is possible to build a system where the fields are "self defining" : - One way is to keep a dictionary of tags and descriptors, and to keep "the data" in a dictionary using the same tags as keys, with values - an oversimplified example: DefinitionDict = {1:'Quantity',2:'Price',3:'Value'}

Problems with email.Generator.Generator

2006-09-10 Thread Chris Withers
Hi All, The following piece of code is giving me issues: from email.Charset import Charset,QP from email.MIMEText import MIMEText charset = Charset('utf-8') charset.body_encoding = QP msg = MIMEText( u'Some text with chars that need encoding: \xa3', 'plain', ) msg.set_charset(chars

Flash Python

2006-09-10 Thread SamFeltus
Comical new updated link http://sonomasunshine.com/sonomasunshine/index_sunshine.php?pagename=ufo_and_more -- http://mail.python.org/mailman/listinfo/python-list

Re: Simple regex with whitespaces

2006-09-10 Thread John Machin
[EMAIL PROTECTED] wrote: > Hello, > > I cannot figure out a way to find a regular expression that would > match one and only one of these two strings: > > s1 = ' how are you' > s2 = 'hello world how are you' > > All I could come up with was: > patt

Re: CPython keeps on getting faster

2006-09-10 Thread George Sakkis
John Machin wrote: > Here are some data points that illustrate the improvement in speed > since 2.1 for one (probably atypical) application: rummaging through a > 120MB Microsoft Excel spreadsheet file using the xlrd package. > > The time shown is the number of seconds required to open the file an

Re: Simple regex with whitespaces

2006-09-10 Thread James Stroud
[EMAIL PROTECTED] wrote: > Hello, > > I cannot figure out a way to find a regular expression that would > match one and only one of these two strings: > > s1 = ' how are you' > s2 = 'hello world how are you' > > All I could come up with was: > p

PyPy with a smaller PVM for the full Python?

2006-09-10 Thread Casey Hawthorne
Currently PyPy is working toward compiling to C a restricted subset of Python, called RPython. Would it be possible for PyPy to "compile" the full subset of Python by also using a lot smaller version of the PVM (Python Virtual Machine) to go with the "compiled" code? So, the user would be running

win32service (wxpython) -- i cannot install service

2006-09-10 Thread kkt49
# vim: et sw=4 ts=8 sts from wxPython.wx import * import sys, os, time import pywintypes import win32serviceutil import win32service import win32event import win32process ID_ABOUT = 101 ID_EXIT = 102 # the max seconds we're allowed to spend backing off BACKOFF_MAX = 300 # if the process runs suc

Re: Simple regex with whitespaces

2006-09-10 Thread Mark Peters
> Which of course does not work. I cannot express the fact: sentence > have 0 or 1 whitespace, separation of group have two or more > whitespaces. > > Any suggestion ? Thanks a bunch ! How about this: >>> import re >>> s = 'hello world how are you' >>> re.split(r"\s{2,}",s) [''

Re: Looking for the Perfect Editor

2006-09-10 Thread Dick Moores
At 06:30 PM 9/10/2006, Kent Johnson wrote: >Dick Moores wrote: > > > I downloaded Python (7) from > > http://www.textpad.com/add-ons/synn2t.html and put the file > > PythonV2.4.syn in C:\Program Files\TextPad 4\system . > > > > However, no syntax highlighting is showing up. so I must have done > >

Re: Python on handhelds

2006-09-10 Thread Paul Rubin
"Nick" <[EMAIL PROTECTED]> writes: > I have never programmed in Python a day in my life. My group is working > on developing an application on the Dell Axim hand held that has a > tight deadline. I have heard that Python is particularly advantageous > in rapid prototyping and deployment. I would li

Python on handhelds

2006-09-10 Thread Nick
Hi all, I have never programmed in Python a day in my life. My group is working on developing an application on the Dell Axim hand held that has a tight deadline. I have heard that Python is particularly advantageous in rapid prototyping and deployment. I would like to lean this way if I can. Doe

Simple regex with whitespaces

2006-09-10 Thread mathieu . malaterre
Hello, I cannot figure out a way to find a regular expression that would match one and only one of these two strings: s1 = ' how are you' s2 = 'hello world how are you' All I could come up with was: patt = re.compile('^[ ]*([A-Za-z]+)[ ]+([A-Za

CPython keeps on getting faster

2006-09-10 Thread John Machin
Here are some data points that illustrate the improvement in speed since 2.1 for one (probably atypical) application: rummaging through a 120MB Microsoft Excel spreadsheet file using the xlrd package. The time shown is the number of seconds required to open the file and parse out all data content

Re: Refactoring Dilemma

2006-09-10 Thread Carl Banks
George Sakkis wrote: > I prefer the the simple global statements if they aren't > that many, otherwise the assignment of the module to self is also fine. I replied to this article, and then canceled the reply (but that never works), thinking you were criticizing the general concept of "module as a

Re: Refactoring Dilemma

2006-09-10 Thread Carl Banks
George Sakkis wrote: > Carl Banks wrote: > > I don't see any major problem with it. In fact, I think it's a very > > good idea to do this, rather than use global statements, when using > > module as a singleton class. > > > > I recently made the same transition myself, though I solved it a bit >

Re: Looking for the Perfect Editor

2006-09-10 Thread Steve Holden
Dick Moores wrote: > At 01:10 PM 9/8/2006, Doug Stell wrote: > >>Try www.TextPad.com. I've used it for years and love it. It >>understands many programming language constructs and can be taught to >>understand python so that things show up in color. > > > Any tips on how to teach TextPad to unde

Re: Two ethernet cards/networks (still)

2006-09-10 Thread Steve Holden
Bob Greschke wrote: > "Steve Holden" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] > >>Bob Greschke wrote: >>The reason that "binding to a specific address is almost never used for a >>client" is because it's the server destination address that the network >>layer will use to de

Re: Looking for the Perfect Editor

2006-09-10 Thread Kent Johnson
Dick Moores wrote: > I downloaded Python (7) from > http://www.textpad.com/add-ons/synn2t.html and put the file > PythonV2.4.syn in C:\Program Files\TextPad 4\system . > > However, no syntax highlighting is showing up. so I must have done > something wrong. Do I have to do something other than

Re: Refactoring Dilemma

2006-09-10 Thread George Sakkis
Carl Banks wrote: > Kamilche wrote: > > ''' > > I'm in the middle of a refactoring dilemma. > > I have several singletons that I'm turning into modules, for ease of > > access. > > The usual method is noted as 'Module 1' below. > > The new method is noted as 'Module 2'. > > Is there any reason NOT

Bloomberg

2006-09-10 Thread domer
Hi everyone, I was wondering if somebody knows how to extract intraday fields(price,volume,trades) from Bloomberg in order to calculate the VWAP. Appreciate any help Kind regards, Domer -- http://mail.python.org/mailman/listinfo/python-list

Re: Javadoc style python manual?

2006-09-10 Thread xiong . xu . cn
Thanks for all replies regard with this question! I think I will get used to python help system:) Maybe I will look into epydoc, too... -Xiong Michele Simionato 写道: > Ben Sizer wrote: > > Michele Simionato wrote: > > > Ben Sizer wrote: > > > > I agree that the Python docs aren't quite as effecti

Re: ANN: Pocoo (bulletin board software) 0.1 beta released

2006-09-10 Thread [EMAIL PROTECTED]
Georg Brandl wrote: > We're pleased to announce that > > Pocoo 0.1 (beta) was released today (Sept. 10, 2006). > > Pocoo is a bulletin board software (aka. message > board) > written in Python, adhering to the WSGI standard. In the long term, it is > meant > to comp

Re: Is it just me, or is Sqlite3 goofy?

2006-09-10 Thread [EMAIL PROTECTED]
Dennis Lee Bieber wrote: > Guess I lied... > > On Sat, 09 Sep 2006 05:22:20 GMT, Dennis Lee Bieber > <[EMAIL PROTECTED]> declaimed the following in comp.lang.python: > > Talking to myself again, I see... > > > rs = cr.execute("""insert into invoice_1 >

Re: Looking for the Perfect Editor

2006-09-10 Thread Dick Moores
At 02:15 PM 9/10/2006, Kent Johnson wrote: >Dick Moores wrote: > > At 01:10 PM 9/8/2006, Doug Stell wrote: > >> Try www.TextPad.com. I've used it for years and love it. It > >> understands many programming language constructs and can be taught to > >> understand python so that things show up in col

Re: ANN: Pocoo (bulletin board software) 0.1 beta released

2006-09-10 Thread Felipe Almeida Lessa
10 Sep 2006 16:17:08 -0700, Paul Rubin <"http://phr.cx"@nospam.invalid>: > So, I think it's not worth thinking about writing yet another BBS > unless it can handle a Slashdot-sized load on a commodity PC. Python is slow. Psyco helps, but you should use C instead. And yes, I am kidding =) -- Fel

Re: Refactoring Dilemma

2006-09-10 Thread Carl Banks
George Sakkis wrote: > Kamilche wrote: > > ''' > > I'm in the middle of a refactoring dilemma. > > I have several singletons that I'm turning into modules, for ease of > > access. > > The usual method is noted as 'Module 1' below. > > The new method is noted as 'Module 2'. > > Is there any reason N

Re: ANN: Pocoo (bulletin board software) 0.1 beta released

2006-09-10 Thread Paul Rubin
Georg Brandl <[EMAIL PROTECTED]> writes: > Pocoo is a bulletin board software > (aka. message board) written in Python, adhering to the WSGI > standard. In the long term, it is meant to compete with systems like > phpBB. You too, huh? I've also always wanted to write one o

Re: Ghostscript interface

2006-09-10 Thread Andrew MacIntyre
defcon8 wrote: > Does a ghostscript interface for python exist? I have searched google > quite a bit and all I have been able to find are command line hacks > from within python. Thanks in advance for any useful help. I'm not aware of a specific interface to the Ghostscript API, but it is trivial

Re: Refactoring Dilemma

2006-09-10 Thread Carl Banks
Kamilche wrote: > ''' > I'm in the middle of a refactoring dilemma. > I have several singletons that I'm turning into modules, for ease of > access. > The usual method is noted as 'Module 1' below. > The new method is noted as 'Module 2'. > Is there any reason NOT to do this that I may be unaware o

ANN: Pocoo (bulletin board software) 0.1 beta released

2006-09-10 Thread Georg Brandl
We're pleased to announce that Pocoo 0.1 (beta) was released today (Sept. 10, 2006). Pocoo is a bulletin board software (aka. message board) written in Python, adhering to the WSGI standard. In the long term, it is meant to compete with systems like phpBB. It provid

Re: Unicode / cx_Oracle problem

2006-09-10 Thread John Machin
Richard Schulman wrote: > On Sun, 10 Sep 2006 11:42:26 +0200, "Diez B. Roggisch" > <[EMAIL PROTECTED]> wrote: > > >What does print repr(mean) give you? > > That is a useful suggestion. > > For context, I reproduce the source code: > > in_file = codecs.open("c:\\pythonapps\\mean.my",encoding="utf_16

Re: get the en of a program running in background

2006-09-10 Thread oripel
Module 'subprocess' may be a better fit for you than fork+exec. Here's an example with a signal handler (1) use subprocess, don't fork and exec (2) maybe this will help: --- import signal, subprocess # define the signal handler def logsignal(signum, frame): print "Caught signal" # register th

Re: Method resolution for super(Class, obj).

2006-09-10 Thread Bruno Desthuilliers
ddtl a écrit : > On 7 Sep 2006 10:42:54 -0700, in comp.lang.python you wrote: > > >>Let's examine what the mro order is for class D: >> >D.mro() >> >>[, , , >>>n__.A'>, ] >> >>When you call d.met(), the call dispatches to the D.met() method. >>After printing out 'D.met', you use super() to ge

Re: Unicode / cx_Oracle problem

2006-09-10 Thread Diez B. Roggisch
> Value of the variable 'id' is u'\ufeff' > Value of the variable 'mean' is u'(' So they both are unicode objects - as I presumed. > It's very hard to figure out what to do on the basis of complexities > on the order of > > http://download-east.oracle.com/docs/cd/B25329_01/doc/appdev.102/b251

Re: Looking for the Perfect Editor

2006-09-10 Thread Kent Johnson
Dick Moores wrote: > At 01:10 PM 9/8/2006, Doug Stell wrote: >> Try www.TextPad.com. I've used it for years and love it. It >> understands many programming language constructs and can be taught to >> understand python so that things show up in color. > > Any tips on how to teach TextPad to underst

Re: [Fwd: Problems with PyGridTableBase]

2006-09-10 Thread [EMAIL PROTECTED]
Hopefully this helps keep your post alive.. I looked all over the internet for examples written with wxgrid and wxgrid with python and haven't realy found out how to add the other functions to a boa-constructor program there just isn't anything except the simple example incuded with boa. This is

Re: Is it just me, or is Sqlite3 goofy?

2006-09-10 Thread Paul Boddie
Dennis Lee Bieber wrote: > > Talking to myself again, I see... Not quite. ;-) [...] > How interesting... With MySQL/MySQLdb I did NOT get exceptions or > error results on inserting bad numeric data supplied as character string > format (ie, as read from the CSV). Instead, MySQL SILENTLY conver

Re: Unicode / cx_Oracle problem

2006-09-10 Thread Richard Schulman
On Sun, 10 Sep 2006 11:42:26 +0200, "Diez B. Roggisch" <[EMAIL PROTECTED]> wrote: >What does print repr(mean) give you? That is a useful suggestion. For context, I reproduce the source code: in_file = codecs.open("c:\\pythonapps\\mean.my",encoding="utf_16_LE") connection = cx_Oracle.connect("us

Re: Two ethernet cards/networks (still)

2006-09-10 Thread Bob Greschke
"Steve Holden" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Bob Greschke wrote: > The reason that "binding to a specific address is almost never used for a > client" is because it's the server destination address that the network > layer will use to determine which interface is

Re: New SourceForge project: Diet Python!!!

2006-09-10 Thread Peter Beattie
TOFU sucks! The Eternal Squire wrote: > Best interface for roguelike gaming. > > Jarek Zgoda wrote: >> The Eternal Squire napisa³(a): >> >>> Diet Python is a flavor of Python with allegro, multiarray, umath, >>> calldll, npstruct and curses builtin, all else nonessential to language >>> ripped ou

Re: Refactoring Dilemma

2006-09-10 Thread George Sakkis
Kamilche wrote: > ''' > I'm in the middle of a refactoring dilemma. > I have several singletons that I'm turning into modules, for ease of > access. > The usual method is noted as 'Module 1' below. > The new method is noted as 'Module 2'. > Is there any reason NOT to do this that I may be unaware o

Re: makepy, ADO and dynamic.py

2006-09-10 Thread Roger Upole
"Chris Curvey" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I'm trying to track down a performance issue in my Windows code, and > hotshot is telling me that the most time and calls are spent in these > methods > > ncalls tottime percall cumtime percall filename:lineno(funct

get the en of a program running in background

2006-09-10 Thread awalter1
Hi, I develop a graphical user interface (with pyGTK) where a click on a button shall launch a program P in background. I want to get the end of this program P but I don't want that my HMI be freezed while P is running. I try to use fork examplesI found on the web, but it seems to not run as expect

downloading eggs

2006-09-10 Thread Bryan
i'm trying to just download the turbogears eggs without installing it. i've read the turbogear install instructions and the easy_install help. from the easy_install web site: If you have another machine of the same operating system and library versions (or if the packages aren't platform-spec

Tkinter listbox:get

2006-09-10 Thread Sorin Schwimmer
lb.curselection() won't return an integer, but a tuple of strings. Also, a StringVar receives a new value with the set() method. So, you'll have to write something like:idx=lb.curselection()StringValue.set(lb.get(int(idx[0])))This will grab the first value from the tuple, convert it in integer, and

Refactoring Dilemma

2006-09-10 Thread Kamilche
''' I'm in the middle of a refactoring dilemma. I have several singletons that I'm turning into modules, for ease of access. The usual method is noted as 'Module 1' below. The new method is noted as 'Module 2'. Is there any reason NOT to do this that I may be unaware of? It's easier than rememberin

wxPython, how to autoresize a frame?

2006-09-10 Thread David
Dear all, In a wxPyhton frame I make a group of controls hiding by pressing a button and i want the whole frame to resize accordingly. The test GUI I wrote is structured like this: frame | +-sizer0 (BoxSizer, 1 slot) | +-panel (style=wx.EXPAND) | +-sizer1 (Box

Algorithm Question

2006-09-10 Thread Andrew McLean
This really an algorithm question more that a Python question, but it would be implemented in Python I have a list of strings, A. I want to find a set of strings B such that for any "a in A" there exists "b in B" such that b is a sub-string of a. But I also want to minimise T = sum_j t_j wh

Re: Looking for the Perfect Editor

2006-09-10 Thread John Bokma
"urielka" <[EMAIL PROTECTED]> wrote: > use Eclipse!!! Q: how can I do x with A A: use B!!! OMG LOLLZZ111!!!11eleven -- John MexIT: http://johnbokma.com/mexit/ personal page: http://johnbokma.com/ Experienced programmer avai

Re: Function metadata (like Java annotations) in Python

2006-09-10 Thread oripel
Thanks, In Python 2.5 there are also functools.wraps and functools.update_wrapper: http://docs.python.org/dev/whatsnew/pep-309.html George Sakkis wrote: > oripel wrote: > > Thanks Paddy - you're showing normal use of function attributes. > > They're still hidden when wrapped by an uncooperative de

Re: OT: What encoding is this?

2006-09-10 Thread skip
I appreciate all the useful feedback on my request. For some reason Safari initially refused to display the page properly with iso-8859-1, and after a bit more poking around with it eventually dropped a note to the list. I eventually discovered that Firefox has a much larger set of encodings to

Re: egg and modpython

2006-09-10 Thread Bruno Desthuilliers
Wensheng a écrit : > I installed pysqlite2 using easy_install. > and got this when using it from modpython: > -- > Mod_python error: "PythonHandler etc.modpython" > > Traceback (most recent call last):

Re: Ghostscript interface

2006-09-10 Thread John Purser
On Sun, 2006-09-10 at 08:14 -0700, defcon8 wrote: > Does a ghostscript interface for python exist? I have searched google > quite a bit and all I have been able to find are command line hacks > from within python. Thanks in advance for any useful help. > I'm not sure what you mean by a "Ghostscri

Ghostscript interface

2006-09-10 Thread defcon8
Does a ghostscript interface for python exist? I have searched google quite a bit and all I have been able to find are command line hacks from within python. Thanks in advance for any useful help. -- http://mail.python.org/mailman/listinfo/python-list

Re: Looking for the Perfect Editor

2006-09-10 Thread Morten Juhl Johansen
mystilleef wrote: > I recommend Scribes. > > http://scribes.sf.net Scribes looks good. Does it need any Gnome components except what is mentioned @ http://scribes.sourceforge.net/documentation.html#requirements ? Yours, Morten -- http://mail.python.org/mailman/listinfo/python-list

Re: OT: What encoding is this?

2006-09-10 Thread Morten Juhl Johansen
Martin v. Löwis wrote: > Neil Hodgson schrieb: >>> http://www.loppen.dk/side.php?navn=getin >> More pages without declarations are produced on Windows so >> I'd guess that its Windows-1252. To tell, look for prices in Euros ("€") >> on the site. > > Ah, but they still use krones in Denmark :-)

Re: Function metadata (like Java annotations) in Python

2006-09-10 Thread George Sakkis
oripel wrote: > Thanks Paddy - you're showing normal use of function attributes. > They're still hidden when wrapped by an uncooperative decorator. The decorator module may be helpful in defining cooperative decorators: http://www.phyast.pitt.edu/~micheles/python/documentation.html George -- ht

Re: pyExcelerator question - dates map to floats?

2006-09-10 Thread skip
John> Check out my "xlrd" package. John> http://cheeseshop.python.org/pypi/xlrd/0.5.2 Very nice. Thanks for the pointer. I threw away about 75% of the xls-to-csv converter I wrote using pyExcelerator. And it worked with Python 2.3 without having to comment out all the decorators. Skip

Re: Function metadata (like Java annotations) in Python

2006-09-10 Thread oripel
Thanks Paddy - you're showing normal use of function attributes. They're still hidden when wrapped by an uncooperative decorator. Paddy wrote: > oripel wrote: > > Hi, > > > > I'm trying to attach some attributes to functions and methods, similar > > to Java annotations and .NET attributes. > > I a

Re: Secure Postgres access

2006-09-10 Thread [EMAIL PROTECTED]
Paul Rubin wrote: > Reid Priedhorsky <[EMAIL PROTECTED]> writes: > > B) Work machine. Run by others, many users. I'd like to also run my > > database client (Python) here. > > Well, just how much do you distrust that machine? If you think it's > totally pwned by attackers who will stop at nothing

Re: Looking for the Perfect Editor

2006-09-10 Thread urielka
use Eclipse!!! it is not a editor but it is the best free IDE out there. for python use Pydev(pydev.sf.net) plugin:it got EVERYTHING:completteion,debuging(with thread support)you can`t work without a debugger for serious projects. for Web Develop use Aptana(aptana.com) another plugin for eclipse,in

Re: Function metadata (like Java annotations) in Python

2006-09-10 Thread oripel
Thanks! Now I see it's accepted to assume nice decorators that update __dict__. At least until __decorates__ or something similar is added... fumanchu wrote: > oripel wrote: > > I'm trying to attach some attributes to functions and methods, similar > > to Java annotations and .NET attributes. > >

Re: No ValueError for large exponents?

2006-09-10 Thread Felipe Almeida Lessa
2006/9/6, Robin Becker <[EMAIL PROTECTED]>: > enigmadude wrote: > > As many have heard, IronPython 1.0 was released. When I was looking > > through the listed differences between CPython and IronPython, the > > document mentioned that using large exponents such as 10 ** > > 735293857239475 will cau

Re: Function metadata (like Java annotations) in Python

2006-09-10 Thread oripel
Thanks bearophile, I prefer not to use docstrings for metadata. 1. Not interfering with the other accepted docstring uses may be difficult (doctests, epydoc) 2. It's impractical for attributes generated by code: @attr(reference_profile_stats=pstats.Stats("foo.profile")) def foo(): ... Regard

Re: pyExcelerator question - dates map to floats?

2006-09-10 Thread skip
John> Check out my "xlrd" package. John> http://cheeseshop.python.org/pypi/xlrd/0.5.2 ... John, Thank you. I wasn't aware of it. I'd seen mention of pyExcelerator a few times recently. All I need is to read Excel spreadsheets anyway. I will check it out. I'm up for reading a go

Re: Unicode / cx_Oracle problem

2006-09-10 Thread Diez B. Roggisch
Richard Schulman schrieb: >>> cursor.execute("""INSERT INTO mean (mean_id,mean_eng_txt) >>> VALUES (:id,:mean)""",id=id,mean=mean) >>> ... >>> "cx_Oracle.NotSupportedError: Variable_TypeByValue(): unhandled data >>> type unicode" >>> >>> But when I try putting a codecs.BOM_UTF16_LE in variou

Re: How to insert an email-link into wxPython's HtmlWindow

2006-09-10 Thread [EMAIL PROTECTED]
Thanks. It works now. --Kneo [EMAIL PROTECTED] wrote: > Hello. I don't know if this topic is appropriate in this group (and my > English is not good). > > My problem is here: > > I created a HtmlWindow in wxPython, then I wrote some code and set it > to the page-text. In these code there was a l

Re: Function metadata (like Java annotations) in Python

2006-09-10 Thread Paddy
oripel wrote: > Hi, > > I'm trying to attach some attributes to functions and methods, similar > to Java annotations and .NET attributes. > I also want to use a convenient decorator for it, something along the > lines of > > @attr(name="xander", age=10) > def foo(): > ... > > Assigning attributes

Re: OT: What encoding is this?

2006-09-10 Thread Martin v. Löwis
Neil Hodgson schrieb: >> http://www.loppen.dk/side.php?navn=getin > > More pages without declarations are produced on Windows so > I'd guess that its Windows-1252. To tell, look for prices in Euros ("€") > on the site. Ah, but they still use krones in Denmark :-) Regards, Martin -- http://ma

Re: Can I make unicode in a repr() print readably?

2006-09-10 Thread Martin v. Löwis
Terry Hancock schrieb: > Is it possible to define some combination of __repr__, __str__, > and/or __unicode__ so that the unicode() wrapper isn't necessary > in this statement: I'm not aware of a way of doing so. > Or, put another way, what exactly does 'print' do when it gets > a class instance

Re: search and replace in a file :: newbie help

2006-09-10 Thread techie2go
thanks , i got it -- http://mail.python.org/mailman/listinfo/python-list

Re: No ValueError for large exponents?

2006-09-10 Thread enigmadude
Georg Brandl wrote: > enigmadude wrote: > > As many have heard, IronPython 1.0 was released. When I was looking > > through the listed differences between CPython and IronPython, the > > document mentioned that using large exponents such as 10 ** > > 735293857239475 will cause CPython to hang, wher