mv-python

Results 142 comments of mv-python

I was able to bisect the commit of the issue: https://github.com/nedbat/coveragepy/commit/106828c2cc8bbce1e5fb31c6a89ea3ac025225c1#. The root cause is following: reproducer described in this issue is yielding following data in parameter `d`: https://github.com/nedbat/coveragepy/blob/5ec587caf0bd670a0af34ad5b766119689b91b56/coverage/collector.py#L417 ```...

`ssl_mode` is already present in the code - see https://github.com/PyMySQL/mysqlclient/blob/main/doc/user_guide.rst#functions-and-attributes. The documentation in https://mysqlclient.readthedocs.io/ is outdated and hence missing this information (#552)

@auvipy the issue in Py-amqp package is not relevant. py-amqp should fully support quorum queues. The problem is that I was not able to find any way how to specify...

@DanielNoord I think bug description misses to mention possible usage of ``pylintrc`` file in message directory.

I cannot replicate this issue on the master branch and 3.0.0a11: ``` $ rm -rf ~/.pyxbld ; python -W default::DeprecationWarning: pyxtest.py Hello! ```

PR published as draft for review of general approach and review of usage/ergonomics of CLI interface. TODO: - [ ] CLI code to be polished - description is missing etc....

Commands (files are from Demos: https://github.com/cython/cython/tree/master/Demos/freeze): `cython --embed --embed-modules=lcmath combinatorics.pyx` # creates combinatorics.c `cython lcmath.pyx` # creates lcmath.c `gcc -c combinatorics.c ... -o combinatorics.o` # compile combinatorics `gcc -c lcmath.c...

> In general I haven't personally been keen to push cython_freeze type functionality too far. Mainly because I think it has limited use without being able to bundle external non-Cython...

A question. Do we need a new decorator for pattern matching support? Based on PEP [1], `Py_TPFLAGS_SEQUENCE` is used when: > For a sequence pattern to succeed the subject must...