|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
1200+ fellow developers rate and compare features of the top IDEs, like Visual Studio, Eclipse, RAD, Delphi and others, across 13 categories. Enjoy this FREE Download of the IDE User Satisfaction Study by Evans Data Corporation. Download Now!
|
|
#1
|
||||
|
||||
|
Hey everyone, for those of you who havn't been to Python.org for a while.. The latest Python version, Python 2.3 was released yesterday..
Quote:
Looking good isn't it! Anyway ppl just a heads up.. For those of you using ActivePython i can't imagin it will be that long before the guys at ActiveState release there own 2.3! EDIT: you can get it here.. http://www.python.org/2.3/ Have fun, Mark. Last edited by netytan : July 30th, 2003 at 09:53 AM. |
|
#2
|
||||
|
||||
|
I'm looking forward to the speed increases
![]() Of course the annoying thing about adopting a new release from a developer's point of view is that you have to decide whether or not to include features that require the new release, since it's an added hassle for your users, and may simply show up as a bug. |
|
#3
|
||||
|
||||
|
Me too telex, it seems to be the main thing that has been going on this time. That and all round improvments.
I hear ya, fortunatly there havn't been to many big changes since 2.2 so it shouldn't be such a problem this time around (unlike 1.5x -> 2.x.x). I'm a little unsure about bool returning Ture and False though, surly 0 and 1 must still be in use too? Mark. |
|
#4
|
||||
|
||||
|
It looks like they are. I think that's all part of Python trying to be more readable, whilst maintaining backwards compatability, a bit like
if obj is 1: if obj == 1: etc. One thing I like in 2.3 is the logging module ![]() |
|
#5
|
||||
|
||||
|
That's good to know, just tested it myself using bool()
. I'm still looking around the docs, havn't looked into the logging yet. The idea of an easy to use error log is pretty good though ![]() Really liking the profile module, has to be my favourate so far. definatly like the speed, i'm not sure if this is an improvment to idle but it seems to be alot after than the old one! Mark. Last edited by netytan : July 30th, 2003 at 08:18 PM. |
|
#6
|
||||
|
||||
|
What's the profile module?
|
|
#7
|
||||
|
||||
|
The profile module seeps pretty similar to Pystone, it basically gives you a look at how long a pieces of code takes to execute, how much time was spend doing this and that and etc.
The idea being, I surpose that by seeing how long say a function takes to run you can try and optamise it. Mark. |
|
#8
|
||||
|
||||
|
for the future..
I've just been looking at importing from zip files, interesting idea.
To run it by ya so you can poke any holes you want in it. Anyway, kinda a online module reposotory only, some new feature of Python allows you to import the module directly over the net.. Would this be too much of a security risk? The basics are already there, i can't see that it would be too hard i mean, we have functions for fetchin webpages and etc. What ya think? Mark. |
|
#9
|
||||
|
||||
|
I'd personally want to be able to fetch an MD5 checksum of the module, so I could be sure that it hasn't been tampered with. So long as I could do that, it could be an interesting feature.
I'll have to look into profile, it could come in handy ![]() |
|
#10
|
||||
|
||||
|
Well, i gotta agree with you there there would obviosuly have to be some security system in place. md5 rocks though! Telex, know where i could post this sugestion so the Python guys can read it?
Mark. |
|
#11
|
||||
|
||||
|
Try the mailing lists / newsgroups listed on the python web site.
|
|
#12
|
||||
|
||||
|
I looked around on the mailing lists page and couldn't see a place where a sugestions could fit. So i ended up sending it to the help address on python.org with a side note pointing out that I didn't know where this should be sent and etc.
Hopefully i'll get some good feedback. Mark. |
|
#13
|
||||
|
||||
|
Quote:
__________________
Time is the greatest of teachers ; sadly, it kills all of its students. - Hector Berlioz |
|
#14
|
||||
|
||||
|
The correct one uses "is" rather than obscure operators like "==" and "eq".
|
|
#15< |