From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from cyclone.coherentlogix.com (cyclone.coherentlogix.com [209.163.133.246]) by sourceware.org (Postfix) with ESMTPS id AC6243857822 for ; Mon, 25 Apr 2022 06:58:54 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org AC6243857822 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=coherentlogix.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=coherentlogix.com Received: from cyclone.coherentlogix.com (localhost [127.0.0.1]) by cyclone.coherentlogix.com (Postfix) with ESMTPS id E2BA7802FF82E for ; Mon, 25 Apr 2022 01:58:53 -0500 (CDT) Received: from localhost (localhost [127.0.0.1]) by cyclone.coherentlogix.com (Postfix) with ESMTP id D39A3802FFC2B for ; Mon, 25 Apr 2022 01:58:53 -0500 (CDT) X-Virus-Scanned: amavisd-new at coherentlogix.com Received: from cyclone.coherentlogix.com ([127.0.0.1]) by localhost (cyclone.coherentlogix.com [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id KWHsmC4f3tjV for ; Mon, 25 Apr 2022 01:58:53 -0500 (CDT) Received: from cyclone.coherentlogix.com (cyclone.coherentlogix.com [192.168.168.181]) by cyclone.coherentlogix.com (Postfix) with ESMTP id B231C8023048F for ; Mon, 25 Apr 2022 01:58:53 -0500 (CDT) Date: Mon, 25 Apr 2022 01:58:53 -0500 (CDT) From: Derek Foster To: cygwin@cygwin.com Message-ID: <384791970.449384.1650869933309.JavaMail.zimbra@coherentlogix.com> Subject: Apparent regression bug from Python 3.8 to 3.9: can't launch scripts using absolute Windows paths MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Mailer: Zimbra 9.0.0_GA_4258 (ZimbraWebClient - GC98 (Win)/9.0.0_GA_4258) Thread-Index: yU6l2rwSqLswgupOyvu8n/1b00TdYA== Thread-Topic: Apparent regression bug from Python 3.8 to 3.9: can't launch scripts using absolute Windows paths X-Spam-Status: No, score=0.7 required=5.0 tests=BAYES_50, KAM_DMARC_STATUS, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: cygwin@cygwin.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: General Cygwin discussions and problem reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Apr 2022 06:58:56 -0000 Hi, folks. I have been having problems with Python 3.9 packaged with Cygwin that I did not have with Python 3.8. Specifically, I am seeing the following: C:\example>copy con test.py #!/usr/bin/env python3 print('hello') ^Z C:\example>c:\cygwin64\bin\python3.8 test.py hello C:\example>c:\cygwin64\bin\python3.9 test.py hello C:\example>c:\cygwin64\bin\python3.8 C:\example\test.py hello C:\example>c:\cygwin64\bin\python3.9 C:\example\test.py /usr/bin/python3.9: can't open file '/cygdrive/c/example/C:\example\test.py': [Errno 2] No such file or directory There is an open bug on CPython for this ( https://github.com/python/cpython/issues/90907 ), but the people there seem to think it's something that the Cygwin folks should probably address, and I haven't been able to find a corresponding Cygwin bug. What do I need to do to get this information to the appropriate team so that this bug can be fixed? Thanks for any information!