[Pkg-bazaar-commits] ./bzr/unstable r293: - todos

Martin Pool mbp at sourcefrog.net
Fri Apr 10 07:51:44 UTC 2009


------------------------------------------------------------
revno: 293
committer: Martin Pool <mbp at sourcefrog.net>
timestamp: Thu 2005-04-28 17:07:06 +1000
message:
  - todos
  - log commands run from testbzr
modified:
  TODO
  testbzr
-------------- next part --------------
=== modified file 'TODO'
--- a/TODO	2005-04-28 03:02:45 +0000
+++ b/TODO	2005-04-28 07:07:06 +0000
@@ -1,8 +1,12 @@
                                                  -*- indented-text -*-
 
-(See also various low-level TODOs in the source code.  Try looking in
+See also various low-level TODOs in the source code.  Try looking in
 the list archive or on gmane.org for previous discussion of these
-issues, or )
+issues.
+
+These are classified by approximate size: an hour or less, a day or
+less, and several days or more.
+
 
 Small things
 ------------
@@ -41,6 +45,13 @@
 * Tidier error for EPIPE: should be just "bzr: broken pipe" with no
   other details because debugging information is rarely interesting.
 
+* On Windows, command-line arguments should be glob-expanded__,
+  because the shell doesn't do this.  However, there are probably some
+  commands where this shouldn't be done, such as 'bzr ignore', because
+  we want to accept globs.
+
+__ http://mail.python.org/pipermail/python-list/2001-April/037847.html
+
 Medium things
 -------------
 

=== modified file 'testbzr'
--- a/testbzr	2005-04-28 03:31:39 +0000
+++ b/testbzr	2005-04-28 07:07:06 +0000
@@ -44,6 +44,7 @@
     
     if isinstance(cmd, basestring):
         cmd = cmd.split()
+    logfile.write('$ %r\n' % cmd)
     retcode = call(cmd, stdout=logfile, stderr=logfile)
     if retcode != 0:
         raise Exception("test failed: %r returned %r" % (cmd, retcode))



More information about the Pkg-bazaar-commits mailing list