Re: PyD - accessing D class fields in Python

2021-05-19 Thread Imperatorn via Digitalmars-d-learn
On Tuesday, 18 May 2021 at 23:27:40 UTC, mw wrote: On Monday, 17 May 2021 at 16:54:07 UTC, mw wrote: I filed the issue here (still no response yet): https://github.com/ariovistus/pyd/issues/152 It's fixed now: pyd version >= 0.14.1 👍

Re: PyD - accessing D class fields in Python

2021-05-18 Thread mw via Digitalmars-d-learn
On Monday, 17 May 2021 at 16:54:07 UTC, mw wrote: I filed the issue here (still no response yet): https://github.com/ariovistus/pyd/issues/152 It's fixed now: pyd version >= 0.14.1

Re: PyD - accessing D class fields in Python

2021-05-17 Thread mw via Digitalmars-d-learn
On Monday, 17 May 2021 at 17:16:27 UTC, Imperatorn wrote: On Monday, 17 May 2021 at 16:54:07 UTC, mw wrote: On Tuesday, 19 March 2019 at 23:58:48 UTC, Bastiaan Veelo wrote: [...] I filed the issue here (still no response yet): https://github.com/ariovistus/pyd/issues/152 [...] https://git

Re: PyD - accessing D class fields in Python

2021-05-17 Thread Imperatorn via Digitalmars-d-learn
On Monday, 17 May 2021 at 16:54:07 UTC, mw wrote: On Tuesday, 19 March 2019 at 23:58:48 UTC, Bastiaan Veelo wrote: [...] I filed the issue here (still no response yet): https://github.com/ariovistus/pyd/issues/152 [...] https://github.com/symmetryinvestments/autowrap

Re: PyD - accessing D class fields in Python

2021-05-17 Thread mw via Digitalmars-d-learn
On Tuesday, 19 March 2019 at 23:58:48 UTC, Bastiaan Veelo wrote: On Monday, 18 March 2019 at 22:25:10 UTC, clothlen wrote: Howdy; I'm trying to extend my Python program with D, but I'm having trouble accessing a D class's field/attribute/property/something. My D file looks like this: ``` m

Re: PyD - accessing D class fields in Python

2019-03-19 Thread Bastiaan Veelo via Digitalmars-d-learn
On Monday, 18 March 2019 at 22:25:10 UTC, clothlen wrote: Howdy; I'm trying to extend my Python program with D, but I'm having trouble accessing a D class's field/attribute/property/something. My D file looks like this: ``` module simpletest; import pyd.pyd; import std.stdio; class Example

PyD - accessing D class fields in Python

2019-03-18 Thread clothlen via Digitalmars-d-learn
Howdy; I'm trying to extend my Python program with D, but I'm having trouble accessing a D class's field/attribute/property/something. My D file looks like this: ``` module simpletest; import pyd.pyd; import std.stdio; class ExampleTest{ int _a = 3; int a(){ r