bialix

Results 14 issues of bialix

I'm using python-socketio with eventlet. It works very well with plain sockets (http://). But I'd like to test it locally with https, so I'm trying to use ssl sockets. I've...

I've noticed that some of absolute paths in generated spec and shebangs have doubled slash, e.g. I have files section with config and spec shows: ``` %config(noreplace) //lib/systemd/system/my-app.service %config(noreplace) //etc/my-app/.env...

I'd like to have some extras for pip install, e.g. optional tests, benchmark and scripts. See https://www.python.org/dev/peps/pep-0508/#id21

_https://bugs.launchpad.net/intelhex/+bug/372625 Old bug from LP. Moving it here._ The most important bits: Standard range function has 3 parameters: start, stop [,step] here: stop is exclusive My tobinXXX group of methods...

api-break

This is from discussion https://github.com/miguelgrinberg/python-socketio/discussions/927 I think I found the bug in your async_client. Method ``async def disconnect(self, abort=False):`` executes ``await self.http.close()`` only if object is connected. Which is clearly...

question

I have consistent crashes with AsyncClient (v.5.7.1 and checked previous 5.6.0, 5.50 the same) with following slightly modified example from your documentation: ``` import asyncio import socketio sio = socketio.AsyncClient(reconnection_delay=0.1,...

bug

Better support of CentOS 7.2 (or perhaps entire RHEL family) when sudo policy has "Defaults requiretty" option set. Allow user of fabtools to override hardcoded pty=False when fabtools about to...

Just spotted that while executing fabtools.require.python.virtualenv(xxx) the lib for some reason download and execute ez_setup from Internet, for unknown reason. Later I've examined the resulting virtual env and can see...

Just bumped into problem with simple commands which worked fine on vagrant vm, but failed on real centos. My commands: ``` fabtools.require.python.pip(python_cmd=python_cmd, pip_cmd=pip_cmd) fabtools.require.python.package('virtualenv', use_sudo=True, python_cmd=python_cmd, pip_cmd=pip_cmd) ``` ``` [server]...

I need to install python 3.x on my server centos 7, and command `fabtools.require.rpm.package("python34")` works as expected. But then it seems not very clear I need to pass python3.4 in...