summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2010-12-13 18:04:23 (GMT)
committerBarry Warsaw <barry@python.org>2010-12-13 18:04:23 (GMT)
commit771d33e1134111a041df78acf7761a9f015d4ea5 (patch)
treec60b8be80d3a669597aed8d13280423588ec0666 /Lib
parente98e8a3aa8da93edd3bcd71fcbd1eb1874deb7f6 (diff)
downloadcpython-771d33e1134111a041df78acf7761a9f015d4ea5.zip
cpython-771d33e1134111a041df78acf7761a9f015d4ea5.tar.gz
cpython-771d33e1134111a041df78acf7761a9f015d4ea5.tar.bz2
Issue 10687. When --without-pymalloc is given, $VERSION is the same as
$LDVERSION, which screws up the sym/hard-links. This avoids those games when $VERSION == $LDVERSION. Also, include a drive-by fix for an obvious syntax error.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/subprocessdata/input_reader.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/subprocessdata/input_reader.py b/Lib/test/subprocessdata/input_reader.py
index ccae5f3..1dc3191 100644
--- a/Lib/test/subprocessdata/input_reader.py
+++ b/Lib/test/subprocessdata/input_reader.py
@@ -2,6 +2,6 @@
import sys
-if __name__ = "__main__":
+if __name__ == "__main__":
for line in sys.stdin:
pass