Алексей Трофимов

Results 6 issues of Алексей Трофимов

Fixes #93, #257

``` 2018/12/05 10:59:13 /Users/***/.go/pkg/mod/***/***/[email protected]/log/log.go:10:2: cannot find identifier for package "github.com/opentracing/opentracing-go": cannot find package "github.com/opentracing/opentracing-go" in any of: /usr/local/Cellar/go/1.11.2/libexec/src/github.com/opentracing/opentracing-go (from $GOROOT) /Users/***/.go/src/github.com/opentracing/opentracing-go (from $GOPATH) ``` ```sh find ~/.go -type d -name...

```python import asyncio from aioreactive.core import AsyncObservable, run async def generator(): # Also fails with sync generators for i in range(10): if i > 2: print("Let's raise") raise ValueError(i) #...

See #151, stylus/stylus#1286 Currenty `file.data` cannot be used for object variables, since they are treated by pairs of `(key, value)` by stylus. This patch adds `rawGlobals` option, that changes how...

For my domain I need to use raw `map[string]interface{}` sometimes. But maps have finite number of keys and each key always has specific type Is there a way to say...