Forgot to credit Anthony in CHANGES.txt for the performance improvements last checkin.
authorstevenknight <stevenknight@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Mon, 31 Dec 2001 03:53:48 +0000 (03:53 +0000)
committerstevenknight <stevenknight@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Mon, 31 Dec 2001 03:53:48 +0000 (03:53 +0000)
git-svn-id: http://scons.tigris.org/svn/scons/trunk@184 fdb21ef1-2011-0410-befe-b5e4ea1792b1

src/CHANGES.txt

index b740d667f27b97713251a67f9cfc36250067b4d6..a524e5ffb3fd06961e2c989ef61f2b74965999b7 100644 (file)
@@ -24,6 +24,17 @@ RELEASE 0.03 -
 
   - Fetch the location of the Microsoft Visual C++ compiler(s) from
     the Registry, instead of hard-coding the location.
+    
+  - Made Scanner objects take Nodes, not path names.
+    
+  - Have the C Scanner cache the #include file names instead of
+    (re-)scanning the file each time it's called.
+
+  - Created a separate class for parent "nodes" of file system roots,
+    eliminating the need for separate is-parent-null checks everywhere.
+    
+  - Removed defined __hash__() and __cmp() methods from FS.Entry, in
+    favor of Python's more efficient built-in identity comparisons.