[Lazarus] Off-by-one error in method TDeclarationInheritanceCache.Clear
Flávio Etrusco
flavio.etrusco at gmail.com
Sat May 30 15:57:34 CEST 2009
I tried to use current http://code.google.com/p/python4delphi with
Lazarus. Did somebody use P4D successfully with recent Lazarus?
Patches? I face a few problems.
My aim is to test/use Lazarus+Python as efficient platform
independent and free dev environment. As an alternative to the fat
and baggy wxPython GUI system. Laz, with very small EXE footprint
size and better RAD and tough speed - but just for rather naked
GUI wiring (and few speedy loops - alt: Cython), while doing the
actual app, data, algo, object, file, interface ... work and all,
in Python. Python can also use reversely use Delphi objects/funcs
quite simply. Laz claims to be mature, and the first impression is
good, just re-compilation a little slower than Delphi.
With Delphi I used this P4D method once in a smaller app some time
ago - initially only wanting to re-use some Python modules and
then found me shifting more and more all the data/algo work to
Python. I felt a ">3x" coding speed up and much better
readability, object orientation, overview, interfaces,
flexibility, dynamics/introspection, debugging, testing etc. While
GUI wiring was a lot tighter in D, than wx/wxGlade etc.
P4D worked principally with Lazarus, but only after a few a
adaptations. Mainly setting DELPHI_4..7_OR_HIGHER. see the little
patch in attachment. Is nobody using?
(After re-building Lazarus IDE for Visual Python Components it
Crashes on usage of non-crucial TPythonGUIInputOutput, and the
rebuilt Laz IDE here becomes at all somewhat instable!? But I
stepped back and use the P4D-units/objects just manually, anyway
only a few things to set up and wire...)
Yet when using the crucial VarPyth unit, upon basic things like
pymod := VarPyth.Import('pymod') => EVariantError "Method
TCustomVariantType.VarDataClear not yet supported"
VarPyth variants would allow to walk seamlessly and comfortably
into the Python object tree with the '.' operator like
pymod.myobj.myattr.x(7).y := z; ...
And without that option, much of the P4D charm disappears.
In VarPyth.pas there are many $IFDEF FPC's , but it doesn't seem
to work at all so far!?.
What about this problem, and what could be a workaround?
http://code.google.com/p/python4delphi/source/browse/trunk/PythonForDelphi/Components/Sources/Core/VarPyth.pas
### from variants.pp #########
procedure TCustomVariantType.VarDataClear(var Dest: TVarData);
begin
NotSupported('TCustomVariantType.VarDataClear');
end;
...
#########################
Robert
-------------- next part --------------
An embedded and charset-unspecified text was scrubbed...
Name: P4D-laz.patch
URL: <http://lists.lazarus-ide.org/pipermail/lazarus/attachments/20090530/0025d9e4/attachment-0004.ksh>
More information about the Lazarus
mailing list