1. 29 Jan, 1998 5 commits
  2. 28 Jan, 1998 2 commits
  3. 27 Jan, 1998 3 commits
  4. 26 Jan, 1998 4 commits
  5. 22 Jan, 1998 10 commits
  6. 21 Jan, 1998 9 commits
  7. 20 Jan, 1998 7 commits
    • Barry Warsaw's avatar
      (py-compute-indentation): In the most common case, where indentation · ac9bde5f
      Barry Warsaw authored
      is based on the line above, watch out for landing inside a triple
      quoted string.  In this case, use iterative search +
      parse-partial-sexp backwards to find the beginning of the string.
      
      Note this does affect performance, but very little in the common cases
      (I hope).  It could be made *much* faster by adding Emacs and XEmacs
      dependent code -- different code naturally.  :-(
      
      Fixes the following reported bug:
      
      if len(sys.argv) >= 6:
          # More lines here
          fptr = open('/etc/hosts', 'w')
          fptr.write("""# /etc/hosts -- autocreated by /etc/ppp/ip-up
      #
      # Address from pppd
      %-15s	%s
      
      # For loopbacking
      127.0.0.1	localhost
      
      255.255.255.255	broadcast
      """ % (ipaddr, ipname) )
      
      os.chmod('/etc/hosts', 0644)
      ac9bde5f
    • Barry Warsaw's avatar
      (py-master-file): New buffer-local variable which can be set in the · 63140df1
      Barry Warsaw authored
      file local variable section of a file.  When set, and the user hits
      C-c C-c, this file gets executed instead of the buffer's file.  Idea
      given by Roy Dragseth <royd@math.uit.no>, but implemented differently.
      
      (py-execute-buffer): Support py-master-file variable.  If this names a
      relative path, default-directory is prepended via expand-file-name.
      63140df1
    • Fred Drake's avatar
      Added a bunch of "concept" index entries. · 417519a8
      Fred Drake authored
      Use trailing "()" on function names in running text.
      417519a8
    • Fred Drake's avatar
      Added index entry and \label{} for exceptions module. This isn't in the · c96f7cb8
      Fred Drake authored
      normal modules portion of the manual, but that's the basic effect of this
      section with the 1.5 change in exception support.
      c96f7cb8
    • Fred Drake's avatar
      Always mark variables in the "Notes" following a table the same way as in the · 7300123c
      Fred Drake authored
      tables:  \var{}
      
      Add a couple of index entries to the File Objects section.
      7300123c
    • Fred Drake's avatar
      Removed bogus index entry for the type() built-in. · 8f53be3e
      Fred Drake authored
      Marked title of the Python Reference Manual as \emph{}, like other Python
      manual titles.
      8f53be3e
    • Fred Drake's avatar
      Proposed new macros: see comments. These are not yet used. · 68887091
      Fred Drake authored
      	These are intended to support semantic markup.  There are a number
      	of places in the documentation where the exact meaning of an
      	indentifier marked \code{} in the running text is ambiguous (could
      	be a module or a class, a function or a method, etc.).  These are
      	intended to clarify the intent of the identifier for processing
      	applications and more intelligent style processing.
      68887091