[Python-checkins] r54919 - python/branches/release25-maint/Lib/subprocess.py (original) (raw)
georg.brandl python-checkins at python.org
Sat Apr 21 22:35:51 CEST 2007
- Previous message: [Python-checkins] r54918 - python/trunk/Lib/subprocess.py
- Next message: [Python-checkins] r54920 - python/trunk/Lib/test/test_socket_ssl.py
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Author: georg.brandl Date: Sat Apr 21 22:35:49 2007 New Revision: 54919
Modified: python/branches/release25-maint/Lib/subprocess.py Log: Bug #1704790: bind name "sys" locally in del method so that it is not cleared before del is run. (backport from rev. 54918)
Modified: python/branches/release25-maint/Lib/subprocess.py
--- python/branches/release25-maint/Lib/subprocess.py (original) +++ python/branches/release25-maint/Lib/subprocess.py Sat Apr 21 22:35:49 2007 @@ -628,7 +628,7 @@ return data
- def del(self):
- def del(self, sys=sys): if not self._child_created: # We didn't get to successfully create a child process. return
- Previous message: [Python-checkins] r54918 - python/trunk/Lib/subprocess.py
- Next message: [Python-checkins] r54920 - python/trunk/Lib/test/test_socket_ssl.py
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]