freelanceprogrammers.org Forum Index » Delphi

when is the next version for python 2.5?


View user's profile Post To page top
yangjun_yulin Posted: Thu Oct 12, 2006 7:27 am


Joined: 12 Oct 2006

Posts: 3
when is the next version for python 2.5?
i have found the pyscripter 1.7 in svn, it works with python 2.5 very
well.
thanks for the good things.
but i can`t found P4D for python 2.5, any idea on its release?
does it has cvs/svn?
thanks for help in advance!



you can find pyscripter svn at:
http://code.google.com/p/pyscripter/source
Reply with quote
Send private message
View user's profile Post To page top
morgan_martinet Posted: Thu Oct 12, 2006 8:44 am


Joined: 29 Apr 2005

Posts: 103
when is the next version for python 2.5?
Hi,
 
We’re about to release a new version
for both P4D and PyScripter. This should be available by the end of this week.
Stay tuned…
 
Morgan
 




From: pythonfordelphi@yahoogroups.com [mailto:pythonfordelphi@yahoogroups.com] On Behalf Of yangjun_yulin
Sent: October 11, 2006 10:28 PM
To: pythonfordelphi@yahoogroups.com
Subject: [pythonfordelphi] when is
the next version for python 2.5?

 



i have found the pyscripter 1.7 in svn, it works with
python 2.5 very
well.
thanks for the good things.
but i can`t found P4D for python 2.5, any idea on its release?
does it has cvs/svn?
thanks for help in advance!

you can find pyscripter svn at:
http://code.google.com/p/pyscripter/source
Reply with quote
Send private message
View user's profile Post To page top
yangjun_yulin Posted: Thu Oct 12, 2006 2:29 pm


Joined: 12 Oct 2006

Posts: 3
when is the next version for python 2.5?
--- In pythonfordelphi@yahoogroups.com, Morgan Martinet <yahoo@...> wrote:
>
> Hi,
>
>
>
> We`re about to release a new version for both P4D and PyScripter. This
> should be available by the end of this week.
>
> Stay tuned.
>
>
>
> Morgan
>
>
>
> _____
>
> From: pythonfordelphi@yahoogroups.com
> [mailto:pythonfordelphi@yahoogroups.com] On Behalf Of yangjun_yulin
> Sent: October 11, 2006 10:28 PM
> To: pythonfordelphi@yahoogroups.com
> Subject: [pythonfordelphi] when is the next version for python 2.5?
>
>
>
> i have found the pyscripter 1.7 in svn, it works with python 2.5 very
> well.
> thanks for the good things.
> but i can`t found P4D for python 2.5, any idea on its release?
> does it has cvs/svn?
> thanks for help in advance!
>
> you can find pyscripter svn at:
> http://code. <http://code.google.com/p/pyscripter/source>
> google.com/p/pyscripter/source
>
Wonderful!
Thanks for all the work!
Reply with quote
Send private message
View user's profile Post To page top
morgan_martinet Posted: Sat Oct 14, 2006 8:51 am


Joined: 29 Apr 2005

Posts: 103
when is the next version for python 2.5?
Hi everybody,
 
Here’s the new release of P4D, at
last available, at http://mmm-experts.com/
!!!!
 
I hope it won’t break too much your
code as there are a couple of changes which may introduce some side effects.
Note that Samuel Iseli found a serious but
very rare bug in the new callback allocator. So, upgrading may be valuable in
this regard.
Also, P4D becomes more Unicode friendly
and will help with localized applications.
 
This release is combined with the latest
version 1.7 of PyScripter done by Kiriakos Vlahos, that you can also download
from the site.
 
Thanks a lot to all contributors.
 
Morgan
 
 
 



Version 3.32 (Oct 14, 2006)










Added support for loading
the Python 2.5.
I had to disable the following 2 APIs which are not exported anymore:
PyRange_New and PySymtableEntry_Type.
I removed the exception PyExc_OverflowWarning.
I added EPyBaseException exception and changed the hierarchy to reflect
latest changes:
BaseException # New in Python 2.5
|- KeyboardInterrupt
|- SystemExit
|- Exception
   |- (all other current built-in exceptions)
Introduced a potential
breaking change to P4D: the conditional symbol PREFER_UNICODE is now
defined by default. Which means that any string stored in a variant will
be converted to a Python unicode string.
If you don`t want that, then make sure that this symbol is not defined
in definition.inc
Note also that PyString_Check has been modified to accept unicode
strings. If you want to discriminate, use PyString_CheckExact.
Kiriakos made changes to
TPythonInputOutput to allow wide strings in I/O and thus support
international chars. It introduces 2 news events
OnSendUniData/OnReceiveUniData. This new behaviour will be activated
only if you define the PREFER_UNICODE symbol and set the new UnicodeIO
property.
Added
TPythonEngine.Type_CheckExact(), done by Kiriakos.
Fixed bug into the new
callback allocator thanks to Samuel Iseli. In some very rare cases, the
empty space of a memory page was wrong and could crash the application.
Fixed a bug into
TPythonEngine.PyObject_AsVariant that prevented a date to be converted
to a real date variant. It was considered as a float, thanks to Oliver
Bock [oliver@...].
Fixed a bug in
TPythonEngine.PyObjectAsString when the submitted object is a unicode
string.
Added api PySeqIter_New to
TPythonEngine
Added api
PyObject_CallMethodStr and PyObject_CallMethodWithArgs to TPythonEngine
thanks to Dietmar Budelsky.
Added methods Repaint and
Invalidate to the TControl wrapper
Added package files for
C++Builder 6 thanks to Philippe BOURGAULT
Created a Wiki at
http://py4d.pbwiki.com/ thanks to a suggestion of Oliver Bock
This will allow any person involved with P4D to collaborate on building
a useful documentation (at last ;-)
Added methods ClientToScreen
and ScreenToClient to the TControl wrapper thanks to Joachim.
Added changes made by Samuel
Iseli to WrapDelphiGrids:
I added an indexed property for setting column widths (ColWidths[i]) and
methods to get / set cell contents of stringgrid to the gridwrapper.
I thought it was easier to do the cell get/set with separate methods
GetCell(col,row), SetCell(col, row, value) instead of trying to imitate
the Delphi 2dim array property
(Cells[col, row]).
Made fields fDefaultIterType
and fDefaultContainerType of TPyDelphiWrapper protected as a request
made by Samuel Iseli.
Added new property
"Version" to TPythonEngine returning the current version of
P4D as a string as a request made by Roar Larsen.




 
Reply with quote
Send private message
View user's profile Post To page top
yangjun_yulin Posted: Sat Oct 14, 2006 10:42 am


Joined: 12 Oct 2006

Posts: 3
when is the next version for python 2.5?
--- In pythonfordelphi@yahoogroups.com, Morgan Martinet <yahoo@...> wrote:
>
> Hi everybody,
>
>
>
> Here`s the new release of P4D, at last available, at
http://mmm-experts.com/
> !!!!
>
>
>
> I hope it won`t break too much your code as there are a couple of
changes
> which may introduce some side effects.
>
> Note that Samuel Iseli found a serious but very rare bug in the new
callback
> allocator. So, upgrading may be valuable in this regard.
>
> Also, P4D becomes more Unicode friendly and will help with localized
> applications.
>
>
>
> This release is combined with the latest version 1.7 of PyScripter
done by
> Kiriakos Vlahos, that you can also download from the site.
>
>
>
> Thanks a lot to all contributors.
>
>
>
> Morgan
>
>
>
>
>
>
>
>
> Version 3.32 (Oct 14, 2006)
>
>
>
>
>
> * Added support for loading the Python 2.5.
> I had to disable the following 2 APIs which are not exported anymore:
> PyRange_New and PySymtableEntry_Type.
> I removed the exception PyExc_OverflowWarning.
> I added EPyBaseException exception and changed the hierarchy to reflect
> latest changes:
> BaseException # New in Python 2.5
> |- KeyboardInterrupt
> |- SystemExit
> |- Exception
> |- (all other current built-in exceptions)
> * Introduced a potential breaking change to P4D: the conditional
> symbol PREFER_UNICODE is now defined by default. Which means that
any string
> stored in a variant will be converted to a Python unicode string.
> If you don`t want that, then make sure that this symbol is not
defined in
> definition.inc
> Note also that PyString_Check has been modified to accept unicode
strings.
> If you want to discriminate, use PyString_CheckExact.
> * Kiriakos made changes to TPythonInputOutput to allow wide strings in
> I/O and thus support international chars. It introduces 2 news events
> OnSendUniData/OnReceiveUniData. This new behaviour will be activated
only if
> you define the PREFER_UNICODE symbol and set the new UnicodeIO
property.
> * Added TPythonEngine.Type_CheckExact(), done by Kiriakos.
> * Fixed bug into the new callback allocator thanks to Samuel Iseli. In
> some very rare cases, the empty space of a memory page was wrong and
could
> crash the application.
> * Fixed a bug into TPythonEngine.PyObject_AsVariant that prevented a
> date to be converted to a real date variant. It was considered as a
float,
> thanks to Oliver Bock [oliver@...].
> * Fixed a bug in TPythonEngine.PyObjectAsString when the submitted
> object is a unicode string.
> * Added api PySeqIter_New to TPythonEngine
> * Added api PyObject_CallMethodStr and PyObject_CallMethodWithArgs to
> TPythonEngine thanks to Dietmar Budelsky.
> * Added methods Repaint and Invalidate to the TControl wrapper
> * Added package files for C++Builder 6 thanks to Philippe BOURGAULT
> * Created a Wiki at http://py4d.pbwiki.com/ thanks to a suggestion of
> Oliver Bock
> This will allow any person involved with P4D to collaborate on
building a
> useful documentation (at last ;-)
> * Added methods ClientToScreen and ScreenToClient to the TControl
> wrapper thanks to Joachim.
> * Added changes made by Samuel Iseli to WrapDelphiGrids:
> I added an indexed property for setting column widths (ColWidths[i]) and
> methods to get / set cell contents of stringgrid to the gridwrapper.
> I thought it was easier to do the cell get/set with separate methods
> GetCell(col,row), SetCell(col, row, value) instead of trying to
imitate the
> Delphi 2dim array property (Cells[col, row]).
> * Made fields fDefaultIterType and fDefaultContainerType of
> TPyDelphiWrapper protected as a request made by Samuel Iseli.
> * Added new property "Version" to TPythonEngine returning the current
> version of P4D as a string as a request made by Roar Larsen.
>

Congratulations!

Thanks for all the hard work!
Reply with quote
Send private message
Post new topic Reply to topic
Display posts from previous:   
 

All times are GMT
Page 1 of 1
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
Freelace Website Designer - Customer web design and software building.
Booking Calendar - reservation calendar script
Land Surveying - total station instruments and equipments
China Wholesale - Electronics Products
Character Studio - Tutorials and Help