Enji Cooper

Results 61 issues of Enji Cooper

The code in kombu.transport.pyamqp ( https://github.com/celery/kombu/blob/master/kombu/transport/pyamqp.py#L98 ) should use socket.getaddrinfo in order to determine the host IP instead of assuming it's always 127.0.0.1 if conninfo.hostname == 'localhost': conninfo.hostname = '127.0.0.1'

Component: pyamqp

* Use `.startswith(..)` in place of the unrolled versions of the equivalent functionality. * Use `if foo:` and `if not foo:` instead of `if len(foo) != 0:` and `if len(foo)...

It looks like there's a bug in the code involved with printing out an error message about the option passed to `-f` being an invalid fixer: ``` $ python-modernize -f...

Using the XUnit plugin triggers failures with items that expect `sys.stdout` and `sys.stderr` to be File-like objects that implement the full `io.IOBase` spec. For example, `.closed` is used in the...

As noted on #10, there are several pjdfstest failures on macOS that need to be resolved in order for the macOS test run to be green. Here's a summary of...

This change is similar to what was done in 5da00ad75b09e262774ec3675bbe4d5a4502a852. Co-authored by: Greg Lewis Co-authored by: Piotr Kubaj Obtained from: FreeBSD ports (9fcaa71e4675d12dc3c9a5895edd68610e03cbcd) Signed-off-by: Enji Cooper

This has been consistently failing on all PRs I've submitted today: ``` test_read_disk_directory_traversals libarchive/test/test_read_disk_directory_traversals.c:1059: SKIPPING: Can't test restoring atime on this filesystem libarchive/test/test_read_disk_directory_traversals.c:1787: ARCHIVE_OK != r ARCHIVE_OK=0 (0x0, 00) r=-25...

``` $ autoreconf configure.ac:111: warning: The macro `AC_LIBTOOL_WIN32_DLL' is obsolete. configure.ac:111: You should run autoupdate. build/autoconf/ltoptions.m4:148: AC_LIBTOOL_WIN32_DLL is expanded from... configure.ac:111: the top level configure.ac:111: warning: AC_LIBTOOL_WIN32_DLL: Remove this warning...

While looking for an asyncio compatible recommendation for requests, I stumbled on the [documentation](https://requests.readthedocs.io/en/latest/community/recommended/) provided by the project. It recommends Request-Threads, which does not seem to be actively developed (no...

- Initialize libssl using non-deprecated APIs OpenSSL 3 deprecated `SSL_library_init` and `SSL_load_error_strings` in favor of `OPENSSL_init_ssl`. Use `OPENSSL_init_ssl` when dealing with OpenSSL 1.1 and newer to unbreak the build with...