summaryrefslogtreecommitdiffstats
path: root/src/CHANGES.txt
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2004-09-15 01:27:00 (GMT)
committerSteven Knight <knight@baldmt.com>2004-09-15 01:27:00 (GMT)
commit6279185536b98e816d87b78aabd2c1ea4883a1c7 (patch)
tree56d5af18b8c947dee1f99b1a25aa7a5a80e7309b /src/CHANGES.txt
parentdd5fc77179a00c9034896cd869d6885d4d266c5e (diff)
downloadSCons-6279185536b98e816d87b78aabd2c1ea4883a1c7.zip
SCons-6279185536b98e816d87b78aabd2c1ea4883a1c7.tar.gz
SCons-6279185536b98e816d87b78aabd2c1ea4883a1c7.tar.bz2
Fix Delete action for non-existent files and must_exist=1 under Python 2.3. (Kevin Quick)
Diffstat (limited to 'src/CHANGES.txt')
-rw-r--r--src/CHANGES.txt9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/CHANGES.txt b/src/CHANGES.txt
index ec8ac36..feb988a 100644
--- a/src/CHANGES.txt
+++ b/src/CHANGES.txt
@@ -15,6 +15,10 @@ RELEASE 0.97 - XXX
- Allow Help() to be called multiple times, appending to the help
text each call.
+ From Steve Christensen:
+
+ - Handle exceptions from Python functions a build actions.
+
From Steven Knight:
- When compiling with Microsoft Visual Studio, don't include the ATL and
@@ -54,6 +58,11 @@ RELEASE 0.97 - XXX
- Provide more info in the error message when a user tries to build
a target multiple ways.
+ - Fix Delete() when a file doesn't exist and must_exist=1. (We were
+ unintentionally dependent on a bug in versions of the Python shutil.py
+ module prior to Python 2.3, which would generate an exception for
+ a nonexistent file even when ignore_errors was set.)
+
From Christoph Wiedemann:
- Add an Environment.SetDefault() method that only sets values if