1. 21 Dec, 1998 19 commits
  2. 19 Dec, 1998 1 commit
  3. 18 Dec, 1998 11 commits
  4. 17 Dec, 1998 5 commits
  5. 15 Dec, 1998 4 commits
    • Guido van Rossum's avatar
      Jim Fulton writes: · 1f687f98
      Guido van Rossum authored
      This fixes a bug that can cause core dumps when doing seeks in input
      StringIO objects. This has a number of other clean-ups.
      1f687f98
    • Guido van Rossum's avatar
      Move the prototype for dump_counts() to before where it is used. · e87e687e
      Guido van Rossum authored
      (This only applies when COUNT_ALLOCS is defined.)
      e87e687e
    • Guido van Rossum's avatar
      Sjoerd Mullender: · 112339fe
      Guido van Rossum authored
      When printing missing modules, also print the module they were
      imported from.
      112339fe
    • Barry Warsaw's avatar
      (py-goto-beginning-of-tqs): Finds the beginning of the triple quoted · ffacc629
      Barry Warsaw authored
      string we find ourselves in, based on the passed in delimiter.
      
      (py-compute-indentation): Fixes for indentation errors when we land
      inside a triple quoted string.  For example:
      
      def foo():
         if os.path.isfile(o_pri_mbox_file) and os.path.isfile(o_pub_mbox_file):
             print """\
      I found both a private and a public mbox archive file
          private: %s
          public : %s
      
      I won't move either file, but you should choose one and move it to
      
          %s
      
      You may want to merge them manually, but be careful about exposing private
      correspondences to the public.""" % (
          o_pri_mbox_file, o_pub_mbox_file, mbox_file)
      *----indentation would be wrong on this line.
      ffacc629