-
-
Notifications
You must be signed in to change notification settings - Fork 311
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error reading address when debugging delphivcl library. #1288
Comments
What is PythonStudio.exe? |
The version is 4.3.4.0 x64. Here is the example code, thanks :) from delphivcl import * class MainForm(Form):
def main(): main() |
This is a delphivcl issue. See Embarcadero/DelphiVCL4Python#84. Hopefully this will be fixed in the next release. |
In version 1.05 the culprit is Screen.Realign Run the following script: from delphivcl import Screen
print(Screen.Realign.__doc__) Output:
Workaround: from delphivcl import *
del(Screen) |
When debugging using the Delphivcl library, stop in the click event of the control, then switch to the variables panel, click on the globals node, and a read address error will pop up, as shown in the figure. But debugging non delphivcl py files is normal.


The text was updated successfully, but these errors were encountered: