Kazantcev Andrey
Kazantcev Andrey
Build command: `cmake.exe --build C:\Users\Asus\Documents\Projects\cpp\CppTrader\cmake-build-debug --target cpptrader-tests -- -j 9` Output error ``` modules/CppCommon/libcppcommon.a(path.cpp.obj): In function `CppCommon::Path::home()': C:/Users/Asus/Documents/Projects/cpp/CppTrader/modules/CppCommon/source/filesystem/path.cpp:970: undefined reference to `__imp_GetUserProfileDirectoryW' C:/Users/Asus/Documents/Projects/cpp/CppTrader/modules/CppCommon/source/filesystem/path.cpp:973: undefined reference to `__imp_GetUserProfileDirectoryW' modules/CppCommon/libcppcommon.a(uuid.cpp.obj): In function...
For example, I have the same code ``` import asynctest class SomeAsyncClass: async def __aenter__(self): pass async def __aexit__(self, exc_type, exc_val, exc_tb): pass async def do_something(self): pass async def method_using_SomeAsyncClass():...
Propose to add support array as arg. For example ``` print(furl('http://example.org', args={'f': [1, 2, 3]})) ``` should return ``` http://example.org?f[0]=1&f[1]=2&f[2]=3 ```
I want to get from settings vaalue of type `Path`. For this I added `cast=Path` to validator but I got string instead of Path. In documentation in section validation I...
If you'd like to report a bug in Flask-Appbuilder, fill out the template below. Provide any extra information that may be useful ### Environment Flask-Appbuilder version: 2.1.6 pip freeze output:...
I have a deleted field which should be available only from admin panel. How to exclude it from `ModelRestApi`?
``` File "profiling\tracing\timers.py", line 24, in Timer clock = time.clock AttributeError: module 'time' has no attribute 'clock' ``` Seems need change function clock on `time.perf_counter() or time.process_time()`
https://github.com/mosquito/aio-pika/issues/371
Hello everybody. I have a big app wich declare all neede queues and exchanges, and I have the microservice witch should use it. I don't want to keep consistent configuration...
Now If I write ``` async with message.process(requeue=True), channel.transaction(): message.ack() raise Exception ``` I got MessageProcessError because ack method set `__processed` in true. Also, I can't call reject manually after...