Sergey Shepelev

Results 291 comments of Sergey Shepelev

@bnavigator thanks Ben, I'll try to make it work on weekend.

@mcepl yeah, sorry, good luck with that corporate care and evil world. Let's only talk code. I understand half of problems encountered by Ben, they may be fixed easily.

I'm guilty of starting holy war and will happily entertain you more but only in some chat or email at your choice. This is not the place.

No update yet. Just a clarification again: - nose is not required for eventlet users at all. It's a development dependency. - when eventlet development process uses nose it's only...

Mixture of: - feature request for dnspython to support mdns -- best long term solution - feature request Eventlet patches DNS resolving with another library that supports mdns - feature...

@tipabu it doesn't pass `len(catched)==1` check. I've merged master, but it also didn't pass before that.

Understood, thanks for report. It could make sense to add timeout in a more general way, not hardcoded into trampoline of course. Meanwhile, your best option is timeout in application,...

Connection, read and write timeouts will happen with any database. It's not behavior of database, it's behavior of network. Proper position is wrap all methods of dbapi. Patching trampoline call...

- `if(ret > 0):` is not Python, should be `if ret > 0:` PEP8 checker should've found this, don't know why. - it's better to try optimistically recv/send first and...

So the problem is it tries to use epoll system event dispatch mechanism which is only present on Linux. For OSX appropriate hub is kqueue. You can enforce it with...