Re: [Python.NET] pythonnet development

2019-06-14 Thread Li Amos
Interesting for it, count me in. _ Python.NET mailing list - PythonDotNet@python.org https://mail.python.org/mailman/listinfo/pythondotnet

Re: [Python.NET] Memory management when embedding python.

2019-09-08 Thread Li Amos
If you want to dispose the PyObject and reduce the reference count immediately you should call `Dispose` manually or use `using` statement. Otherwise, GC will take care of it although it would be a little delay, you can adjust ` Finalizer.Instance.Threshold ` for reducing the delay, it refers how

Re: [Python.NET] Call for discussion items for next week's working group meeting (September 24th)

2019-09-17 Thread Li Amos
đŸ˜‚About how to reset the Python, that’s what I exactly do it at last weekends. https://github.com/pythonnet/pythonnet/pull/958 From: PythonDotNet on behalf of Mark Visser Sent: Wednesday, September 18, 2019 12:31:07 AM To: PythonDotNet@python.org Subject: Re: [P

Re: [Python.NET] Call for discussion items for next week's working group meeting (September 24th)

2019-09-24 Thread Li Amos
Still having the meeting today? I can’t find the entry. From: PythonDotNet on behalf of Li Amos Sent: Wednesday, September 18, 2019 12:54:47 AM To: A list for users and developers of Python for .NET Subject: Re: [Python.NET] Call for discussion items for next

Re: [Python.NET] Working group meeting notes for November 7, 2019

2019-11-08 Thread Li Amos
I prefer earlier. ?? From: PythonDotNet on behalf of Mark Visser Sent: Friday, November 8, 2019 4:44:19 AM To: PythonDotNet Subject: [Python.NET] Working group meeting notes for November 7, 2019 Attendees: Benoit Hudson (ImgSpc), Amos Li, Mark Visser (Unity) A

Re: [Python.NET] Working group meeting notes for December 5, 2019 - CANCELLED

2020-01-16 Thread Li Amos
My VPN just stuck, I may be late. From: PythonDotNet on behalf of Benoit Hudson Sent: Friday, December 6, 2019 3:54:48 AM To: A list for users and developers of Python for .NET Subject: Re: [Python.NET] Working group meeting notes for December 5, 2019 - CANCE

[Python.NET] Notes for #958 & #1016

2020-01-30 Thread Li Amos
For #958, I droped NativeCodePage dependency, it makes no need for writting the machine code to makes dummy slots at all. I was thinking is it possible to keep thouse clr moduel alive after domain reload. I may try to implement it if I could. Actually, it won't be easy to make #1016 pass all tes