cpython
cpython copied to clipboard
The Python programming language
I'm sorry if this has already been reported. I'm sure it's very low on any list of priorities but it should be an easy one. I noticed that when doing...
# Bug report ### Bug description: InterpreterPoolExecutor takes a thread_name_prefix parameter, but it doesn't propagate to the underlying subinterpreter. ```python from concurrent.futures import ThreadPoolExecutor try: from concurrent.futures.interpreter import InterpreterPoolExecutor #...
This is an draft for a table summary for the math module, as discussed in [discourse](https://discuss.python.org/t/summary-tables-as-an-api-overview/68474/1). This is the version with a single table, with intermediate headers. [Direct link to...
Fix: #124452 * Issue: gh-124452
* Issue: gh-94512
# Bug report ### Bug description: I have discovered that 1. On ~~Solaris~~ OpenIndiana, if you don't specify at least socket type **or** protocol for the service name, address resolution...
* Issue: gh-87063 for example: ``` import multiprocessing def f(): print('hello') print('world') if __name__ == "__main__": p = multiprocessing.Process(target=f) p.start() p.join() # In a more context, it's closed p.close() #...
The tutorial classes chapter multiple inheritance section described MRO as depth first. That was the case for the old classic classes in Python2. * Issue: gh-125904 ---- 📚 Documentation preview...
This is a proposal for rejecting `default_factory` on fields if the dataclass does not have an `__init__` method. * Issue: gh-89529
# Feature or enhancement ### Proposal: This issue is extracted from https://github.com/python/cpython/pull/125561. When interpretation_clear is changed, the `PyThreadState_Clear` function needs to be called when `HEAD_LOCK` is not held, but in...