Alexander Pantyukhin

Results 26 comments of Alexander Pantyukhin

There are still some problems with parsing type's. But going to fix that soon.

Parser in progress. Tested it today on whole pyi files in https://github.com/python/typeshed/tree/master/stdlib . it raises error in 175 cases from 885 files. Keep working with this.

Now there are 12 files from whole `typeshed` raises error (some except situation for `stdlib` and left for `protobuf` from `stubs`). Now I'm thinking how it could be best way...

Is there any news with this issue?

@dotMorten I try the following approach: on the SQL side: ```sql SELECT geography_field.STAsText() geography_field FROM mytable ``` on the code side: ```csharp var strValue = ((SqlDataReader)reader).GetSqlString(geographyFieldPosition); var sqlGeographyFromReader = SqlGeography.Parse(binvalue);...

Right now there is used asyncio.Queue https://github.com/AsynkronIT/protoactor-python/blob/b296de864d216ea5b90b6512e72d7e50eb03d72b/protoactor/mailbox/queue.py#L2 . I couldn't find other queues in project. Also as was mentioned in this issue : https://github.com/AsynkronIT/protoactor-python/issues/25 we can focus on one working...

Not sure that `pickle` can serialize that. There is a list of what can be serialized: https://docs.python.org/3.5/library/pickle.html#pickle-picklable and methods of class is not there. And here we actually pass class...

I've pushed the PR with adding this functionality

There is an inner function in the implementation. It doesn't requires tests, because outer function is tested.