Victor

Results 365 comments of Victor

In particular, #11 is no longer present in master

@ronnieoverby looks like `Stream` class won't support them, so there is little point I guess. However, the new classes in [`System.IO.Pilelines`](https://docs.microsoft.com/en-us/dotnet/api/system.io.pipelines?view=dotnet-plat-ext-3.1) could get a corresponding `AsyncBinaryReader` and `AsyncBinaryWriter`.

FYI, it turned out it was not enough to create a suitable conda environment to install the wheel. E.g. `conda create -n myenv python=same-as-wheel` would still fail even though I...

Not sure if it is of any use, but I faced potentially related problem with `Get-PhysicalDisk` in 7.2.5 (have not tried other versions) called from a desktop C# app via...

If we decide to implement this, I'd love to reuse IronPython code directly. Another example code [here](https://docs.microsoft.com/en-us/archive/msdn-magazine/2019/october/csharp-accessing-xml-documentation-via-reflection) but I like the IronPython's one better.

@BadSingleton is there a way to provide that functionality without bringing the `NonSerializedTypeBuilder` into Python.NET? E.g. can we allow user to override the serializer somehow, and you guys would be...

Also, can you describe the approach in more details?

It seems that this code can be abstracted out of this repo with: 1. Having a public post stash and pre restore hooks 2. Exposing a wrapper for PyCapsule and...

If you need asynchronous behavior, you can use `Task.ContinueWith` method.

I suppose the HashSet involvement can be put behind a boolean flag like `Runtime.Dangerous.AllowUndefinedShutdownBehavior`. Without it the process may crash with segfault when Python or .NET runtime is unloaded when...