summaryrefslogtreecommitdiff
path: root/Lib/distutils/cygwinccompiler.py
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2000-12-12 23:11:42 +0000
committerFred Drake <fdrake@acm.org>2000-12-12 23:11:42 +0000
commit815a523a0c039f5522f3003ef9e13c987be2a8b2 (patch)
tree6fcc3b1f22fd414e5568ffab828d677419b26040 /Lib/distutils/cygwinccompiler.py
parent614fabb63b74a8f85bc6cce9236cc347140bdf94 (diff)
downloadcpython-815a523a0c039f5522f3003ef9e13c987be2a8b2.tar.gz
Update the code to better reflect recommended style:
Use != instead of <> since <> is documented as "obsolescent". Use "is" and "is not" when comparing with None or type objects.
Diffstat (limited to 'Lib/distutils/cygwinccompiler.py')
-rw-r--r--Lib/distutils/cygwinccompiler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/cygwinccompiler.py b/Lib/distutils/cygwinccompiler.py
index 5b06d3d79c..f40d1a2d4a 100644
--- a/Lib/distutils/cygwinccompiler.py
+++ b/Lib/distutils/cygwinccompiler.py
@@ -241,7 +241,7 @@ class CygwinCCompiler (UnixCCompiler):
objects.append(def_file)
#end: if ((export_symbols is not None) and
- # (target_desc <> self.EXECUTABLE or self.linker_dll == "gcc")):
+ # (target_desc != self.EXECUTABLE or self.linker_dll == "gcc")):
# who wants symbols and a many times larger output file
# should explicitly switch the debug mode on