Vladimir Rutsky

Results 43 comments of Vladimir Rutsky

How about following algorithm? 1) translate regular expression to lower case: ``` [Aab]{1,2} -> [aab]{1,2} ``` 2) remove redundancies (not sure how they treated in exrex): [aab]{1,2} -> [ab]{1,2} 3)...

> create a future, pass the future to the event handler, pause on the future Not sure that I'm properly understand you. I need to run async. code from synchronous...

FYI, if I use ``` python ... def closeEvent(self, event): loop.run_until_complete(f()) ``` I get following exception: ``` python QCoreApplication::exec: The event loop is already running Traceback (most recent call last):...

It would be great if Quamash will guarantee, that running second event loop is safe (e.g. by using on low level event loop implementation that allows sharing of I/O primitives...

> QtCore.QEventLoop isn't a second event loop, it's a second "view" of the same event loop. check the code for PR #11, it uses QtCore.QEventLoop to do it's thing. Yes,...

> yeah. that could be a problem, the obvious solution is to have each run of `run_until_complete()` wrap a `QtCore.QEventLoop`, that might be wise, or a seperate inline_async function, but...

@jehiah any plans merging this? I would love to see this merged and released.

Is anyone working on Import gpx/tcx feature?

@jonasoreland is it hard to implement import? Could you give me some kind of instructions where and what should be added/implemented in code, so that I would be able try...

What is the status of this issue? I think simple including `-W` only on non-Windows system should fix this issue.