[Checkins] SVN: grokcore.startup/trunk/ cosmetics

Jan-Wijbrand Kolman janwijbrand at gmail.com
Mon Oct 25 06:40:26 EDT 2010


Log message for revision 117844:
  cosmetics

Changed:
  U   grokcore.startup/trunk/CHANGES.txt
  U   grokcore.startup/trunk/src/grokcore/startup/startup.py

-=-
Modified: grokcore.startup/trunk/CHANGES.txt
===================================================================
--- grokcore.startup/trunk/CHANGES.txt	2010-10-25 10:27:34 UTC (rev 117843)
+++ grokcore.startup/trunk/CHANGES.txt	2010-10-25 10:40:26 UTC (rev 117844)
@@ -6,6 +6,11 @@
 
 - Drop zdaemon support.
 
+- Close the database explicitely when execing a script through the
+  ``interactive_debug_prompt``. This came to light in tests on Windows, as the
+  tests would try to delete the temp directory it created with the still
+  unclosed database file in there.
+
 1.0.2 (2010-10-05)
 ==================
 
@@ -67,4 +72,3 @@
 
 * Created ``grokcore.startup`` in January 2009 by factoring paster
   related application code out of grokcore templates.
-

Modified: grokcore.startup/trunk/src/grokcore/startup/startup.py
===================================================================
--- grokcore.startup/trunk/src/grokcore/startup/startup.py	2010-10-25 10:27:34 UTC (rev 117843)
+++ grokcore.startup/trunk/src/grokcore/startup/startup.py	2010-10-25 10:40:26 UTC (rev 117844)
@@ -56,7 +56,7 @@
         globals_['__file__'] = sys.argv[0]
         execfile(sys.argv[0], globals_)
 
-        # Housekeeping
+        # Housekeeping.
         db.close()
         sys.exit()
 



More information about the checkins mailing list