Oleg Broytman

Results 12 issues of Oleg Broytman

Hi! First I got the problem with Cheetah 2.4.2 in Debian 6.0, but it seems latest Cheetah 2.4.4 has the same bug (if it's a bug and not an error...

This is for the case where remote umask is not world-readable: something like 0027 or even 0077 (not even group-readable). Remote file copied to /.well-known/ should perhaps be world-readable. It...

``` shell $ apsw database.sqlite SQLite version 3.8.7.1 (APSW 3.8.6-r1) Enter ".help" for instructions Enter SQL statements terminated with a ";" sqlite> SELECT * FROM sqlite_master; …output… sqlite> -- SELECT...

I exited with [Ctrl]+[d] from the shell: ``` shell $ apsw SQLite version 3.8.7.1 (APSW 3.8.6-r1) Enter ".help" for instructions Enter SQL statements terminated with a ";" sqlite> $ ```...

Hello! There is a bug related to `all` extras declaration at [`setup.py`, line 61](https://github.com/palantir/python-language-server/blob/a91a257d2c8687a7931721d387b2ffeb6aa71fc2/setup.py#L61). There is an `if` that decides `pylint` version; that `if` doesn't work with universal wheels that...

```sh $ sudo docker build . … Step 8/13 : RUN apt-get install -y python3-pip python3-dev build-essential libevent-pthreads-2.1-6 ---> Running in 487a2b23ed45 Reading package lists... Building dependency tree... Reading state...

### Code of Conduct - [X] I have read and agree to the GitHub Docs project's [Code of Conduct](https://github.com/github/docs/blob/main/.github/CODE_OF_CONDUCT.md) ### What article on docs.github.com is affected? https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions ### What part(s)...

content
actions
waiting for review
needs SME

There is a minor bug in [examples/multi-socket_action-select.py](https://github.com/pycurl/pycurl/blob/0e0952a820ca1c82ce1742995b15b5f8b1508a25/examples/multi-socket_action-select.py#L146-L151). With the current code if `timeout_ms` < 0 `state['timeout']` will be set two times, 1st to `None`, then to `timeout_ms / 1000.0`. I'm...

https://github.com/python/cpython/commit/99a73c3465a45fe57cac01a917fc50e0743b5964#diff-3bde66c820a115e5740d481232a0c48331c3856ad4c247a586be98991c08f8cbR157 `getpass.getuser()` raises `OSError` in Python 3.13. [The code that gets `DEFAULT_USER`](https://github.com/PyMySQL/PyMySQL/blob/ec27bade879ad05fda214188d035c1fe3f255a35/pymysql/connections.py#L43) must catch `OSError` now.