1. 21 Jan, 2003 6 commits
    • Martin v. Löwis's avatar
      Merge with PyXML 1.71: · 069dde2b
      Martin v. Löwis authored
      60: Added support for the SkippedEntityHandler, new in Expat 1.95.4.
      61: Added support for namespace prefixes, which can be enabled by setting the
          "namespace_prefixes" attribute on the parser object.
      65: Disable profiling changes for Python 2.0 and 2.1.
      66: Update pyexpat to export the Expat 1.95.5 XML_GetFeatureList()
          information, and tighten up a type declaration now that Expat is using
          an incomplete type rather than a void * for the XML_Parser type.
      67: Clarified a comment.
          Added support for XML_UseForeignDTD(), new in Expat 1.95.5.
      68: Refactor to avoid partial duplication of the code to construct an
          ExpatError instance, and actually conform to the API for the exception
          instance as well.
      69: Remove some spurious trailing whitespace.
          Add a special external-entity-ref handler that gets installed once a
          handler has raised a Python exception; this can cancel actual parsing
          earlier if there's an external entity reference in the input data
          after the the Python excpetion has been raised.
      70: Untabify APPEND.
      71: Backport PyMODINIT_FUNC for 2.2 and earlier.
      069dde2b
    • Martin v. Löwis's avatar
    • Kurt B. Kaiser's avatar
      1. Restore the rest of Python IDLE setup.py Rev 1.4 (Python SF 634078) · 2da75faa
      Kurt B. Kaiser authored
         (Loewis) which uses 'SRCDIR' (if available) in package dir path.
      2. Merge Python IDLE setup.py Rev 1.5 (Loewis) to allow installation
         from the build directory. IDLEfork SF Patch 668998 (Loewis)
      2da75faa
    • Skip Montanaro's avatar
      flesh out open() docstring · b3b22f3a
      Skip Montanaro authored
      b3b22f3a
    • Skip Montanaro's avatar
      more tweaks · 1f7a271f
      Skip Montanaro authored
      1f7a271f
    • Skip Montanaro's avatar
      * document open() function · 190613ce
      Skip Montanaro authored
      * promote the example and the documented restrictions to \subsection status
      * document the flag parameter of the DbfilenameShelf class
      190613ce
  2. 20 Jan, 2003 7 commits
  3. 19 Jan, 2003 14 commits
  4. 18 Jan, 2003 3 commits
    • Raymond Hettinger's avatar
    • Raymond Hettinger's avatar
      SF bug #668906: class browser raises AttributeError · 18acea7c
      Raymond Hettinger authored
      The Py2.3 updates to the pyclbr module return both Class and Function
      objects.  The IDLE ClassBrowser module only knew about Class and could
      not handle objects which did not define "super".
      
      Fixed by adding a guard.
      18acea7c
    • Tim Peters's avatar
      SF patch 670012: Compatibility changes for _strptime.py. · 08e54270
      Tim Peters authored
      Patch from Brett Cannon:
      
          First, the 'y' directive now handles [00, 68] as a suffix for the
          21st century while [69, 99] is treated as the suffix for the 20th
          century (this is for Open Group compatibility).
      
          strptime now returns default values that make it a valid date ...
      
          the ability to pass in a regex object to use instead of a format
          string (and the inverse ability to have strptime return a regex object)
          has been removed. This is in preparation for a future patch that will
          add some caching internally to get a speed boost.
      08e54270
  5. 17 Jan, 2003 10 commits