Jump to content

pyscripter

Members
  • Content Count

    779
  • Joined

  • Last visited

  • Days Won

    42

Everything posted by pyscripter

  1. Could you debug MapDLL in both and try to see whether they differ? I have looked at the code and could not see any significant difference.
  2. But the two are almost identical nowadays and they both import Py_DebugFlag etc. Could you please pinpoint what makes the differences (e.g. by stepping through the code)? That would be very useful. If you do have access to Delphi for the MacOS can you please also try with that?
  3. Ok. There must be something wrong with the dynamic library you are using. P4D has been used without such issues in MacOS. Could you please try to install a different version of python say 3.7 or 3.9 and test with that? Can any other MacOS user shed some light here?
  4. pyscripter

    Delphi, Python and Android

    Android is not supported yet.
  5. In that case what happens of you comment out the importing of all flags?
  6. Strange. Py_DebugFlag should be exported on all platforms. Please uncomment the line with the Import - Import(Py_DebugFlag). Does it work then?
  7. Are you sure you are using the latest version from pyscripter/python4delphi: Free components that wrap up Python into Delphi and Lazarus (FPC) (github.com)?
  8. pyscripter

    Problem with FPC

    The fpc support for custom variants is incomplete. See the fpc section at SupportedPlatforms · pyscripter/python4delphi Wiki (github.com). Does it work if you store MainModule.screenshot() to a variable and then call ExtractPythonObjectFrom like in the previous example?
  9. pyscripter

    Images in High DPI, how?

    IconFontsImageList is an Image list. Font Awesome and Segoe MDL2 Assets font are both image fonts. They contain images that scale nicely. Anyway... Happy holidays to everyone!
  10. pyscripter

    Images in High DPI, how?

    Fonts scale quite nicely. Font Awesome for example and the like are used in high DPI apps. Microsoft suggests the use of Segoe MDL2 Assets font for UWP applications (supports layering, colorization and mirroring).
  11. I am new to MacOS developement. I have added an new Connection Profile which test successfully, the PAServer is running, XCode has the command line tools, When I try to add a new SDK nothing happens. What am I missing? Any help?
  12. pyscripter

    Images in High DPI, how?

    Maybe because they are scalable? Scalable Vector Graphics (SVG)
  13. pyscripter

    when to use Py_XDecRef / Py_XIncRef ?

    It depends on who is responsible for the destruction of this object. If you call Py_XDecRef then when the last reference in the python code is deleted python the destructor of the object will be called.
  14. pyscripter

    git and Delphi tooling?

    Windows XP leak confirmed after user compiles the leaked code into a working OS | ZDNet
  15. pyscripter

    git and Delphi tooling?

    Why should I be offended . All my code is open source anyway.
  16. pyscripter

    git and Delphi tooling?

    The emphasis was on more. I trust more...
  17. pyscripter

    git and Delphi tooling?

    The value of stealing commercial code is overstated. The whole Windows code base has been leaked if I remember well. Any employee can steal the source code. And I must say I trust Github abilities to protect the source code (and Google and Amazon) more than those of the IT departments of most companies.
  18. pyscripter

    git and Delphi tooling?

    TortoiseGit here as well. Happy user.
  19. pyscripter

    Array of Objects

    There are many ways to expose Delphi objects to Python but by far the easiest is to use WrapDelphi. Please have a look at the WrapDelphi unit tests and Demo 31.
  20. Have you studied demo33 and used TPythonThread?
  21. pyscripter

    Multiple Instances of Python Engine

    You can only load one pythonxy.dll in the Delphi process, hence you can only have one PythonEngine in an application. Look at Demo33 on how to use threads and/or multiple sub-interpreters without blocking the main thread. But also note that you cannot bypass the python famous GIL (Global Interpreter Lock), so that only one python thread can be executing at the same time. Under Tutorials/Webinar II look at PyVizSVG.dproj on how to generate svg files in python scripts and how to display them in Delphi, The only way to really use multiple cores to generate the graphs is to use external processes. (there is the mutliprocessing unit in python, but it would be easier just to start multiple python processes from Delphi).
  22. pyscripter

    PPyObject V's Variant

    The mechanism that Delphi uses to dispatch such calls does not support it. You need some consistency. Either you use the low-level Python interface and PPyObjects or VarPyth and custom variants. Although you can easily convert PPyObjects to Variants and back (VarPythonCreate, ExtractPythonObjectFrom), sticking to one of the two simplifies life.
  23. pyscripter

    vars function within Delphi

    vars is a builtin function. You can use BuiltinModule.vars to access it using VarPyth If you are on Delphi 10.3 or later you can write something like for V in BuiltinModule.vars(anObject) do begin anAttr := BuiltInModule.getattr(anObject, V) Writeln(V, anAttr.__class__) end; assuming anObject is a Custom Variant pointing to the python object. (out of memory and not tested)
  24. I guess everyone knows this already, but I did find this Stackoverflow answer surprising. Can you guess what is the message shown? function DoSomething(SomeBoolean: Boolean) : string; begin if SomeBoolean then Result := 'abc' end; procedure TForm1.Button1Click(Sender: TObject); var xx: string; begin xx := DoSomething(True); xx := DoSomething(False); ShowMessage(xx); end; Shouldn't the above deserve a compiler warning?
  25. pyscripter

    PyPy support

    No.
×