This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author poikilos
Recipients docs@python, poikilos
Date 2021-03-03.19:59:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1614801590.99.0.0824232667755.issue43391@roundup.psfhosted.org>
In-reply-to
Content
Steps to reproduce the issue:
- Run Python 3.7.3 (or later, possibly) with the following code:

    import subprocess
    import inspect
    with open("subprocess-py3.py", 'w') as outs:
        outs.write(inspect.getsource(subprocess).replace("\\n","\n"))

The resulting ./subprocess-py3.py contains the source code for subprocess including:

# Copyright (c) 2003-2005 by Peter Astrand <astrand@lysator.liu.se>
#
# Licensed to PSF under a Contributor Agreement.
# See http://www.python.org/2.4/license for licensing details.

However, the URL is broken, and whatever code Peter Astrand developed may be long gone--I'll leave it up to the devs to determine the correct license, but the link is broken and the code is significantly different even than Python 2.4's.
History
Date User Action Args
2021-03-03 19:59:51poikilossetrecipients: + poikilos, docs@python
2021-03-03 19:59:50poikilossetmessageid: <1614801590.99.0.0824232667755.issue43391@roundup.psfhosted.org>
2021-03-03 19:59:50poikiloslinkissue43391 messages
2021-03-03 19:59:50poikiloscreate