summaryrefslogtreecommitdiffstats
path: root/doc/user/tasks.xml
diff options
context:
space:
mode:
authorGreg Noel <GregNoel@tigris.org>2010-04-24 05:51:13 (GMT)
committerGreg Noel <GregNoel@tigris.org>2010-04-24 05:51:13 (GMT)
commit7e116b31182749950856c622ca7932031f8be19c (patch)
treea4b9f900e52561a91e0c4509dc6c692492996b7f /doc/user/tasks.xml
parent591b78f0f314f11192fdf13d3baa66f81b160e44 (diff)
downloadSCons-7e116b31182749950856c622ca7932031f8be19c.zip
SCons-7e116b31182749950856c622ca7932031f8be19c.tar.gz
SCons-7e116b31182749950856c622ca7932031f8be19c.tar.bz2
http://scons.tigris.org/issues/show_bug.cgi?id=2345
Comb out all code that supported earlier versions of Python. Most such code is in snippets of only a few lines and can be identified by having a Python version string in it. Such snippets add up; this combing pass probably got rid of over 500 lines of code.
Diffstat (limited to 'doc/user/tasks.xml')
-rw-r--r--doc/user/tasks.xml29
1 files changed, 0 insertions, 29 deletions
diff --git a/doc/user/tasks.xml b/doc/user/tasks.xml
index 434871f..bf6b5ee 100644
--- a/doc/user/tasks.xml
+++ b/doc/user/tasks.xml
@@ -54,16 +54,6 @@ import os.path
filenames = [os.path.join(prefix, x) for x in filenames]
</programlisting>
-<simpara>or in Python 1.5.2:</simpara>
-
-<programlisting>
-import os.path
-new_filenames = []
-for x in filenames:
- new_filenames.append(os.path.join(prefix, x))
-</programlisting>
-</example>
-
<example>
<title>Substituting a path prefix with another one</title>
<programlisting>
@@ -71,14 +61,6 @@ if filename.find(old_prefix) == 0:
filename = filename.replace(old_prefix, new_prefix)
</programlisting>
-<simpara>or in Python 1.5.2:</simpara>
-
-<programlisting>
-if filename.find(old_prefix) == 0:
- filename = filename.replace(old_prefix, new_prefix)
-</programlisting>
-</example>
-
<example>
<title>Filtering a filename list to exclude/retain only a specific set
of extensions</title>
@@ -87,17 +69,6 @@ import os.path
filenames = [x for x in filenames if os.path.splitext(x)[1] in extensions]
</programlisting>
-<simpara>or in Python 1.5.2:</simpara>
-
-<programlisting>
-import os.path
-new_filenames = []
-for x in filenames:
- if os.path.splitext(x)[1] in extensions:
- new_filenames.append(x)
-</programlisting>
-</example>
-
<example>
<title>The "backtick function": run a shell command and capture the
output</title>