1. 05 Jun, 2001 9 commits
    • Andreas Jung's avatar
      *** empty log message *** · e5c06e8d
      Andreas Jung authored
      e5c06e8d
    • Fred Drake's avatar
      · 5a94e38f
      Fred Drake authored
      Do not test for sys.exc_info(); it was already present in Python 2.1.
      This simplifies code and improves performance (very slightly).
      
      In two places, object type was tested by calling type() on each of two
      values and comparing the results (4 dict lookups, 2 Python->C function
      calls).  Replace each with an isinstance() call comparing to a saved
      type object (3 dict lookups, 1 Python->C function call, more future-proof).
      5a94e38f
    • Andreas Jung's avatar
      · a374dd25
      Andreas Jung authored
      Moved ISO8601 into DateTime class.
      DateTime constructor now also accepts ISO8601 dates.
      a374dd25
    • Chris McDonough's avatar
      *** empty log message *** · 5239f898
      Chris McDonough authored
      5239f898
    • Andreas Jung's avatar
      added parser/constructor for ISO 8601 dates · 59db7e71
      Andreas Jung authored
      59db7e71
    • Andreas Jung's avatar
      code cleanup · 6b166e2e
      Andreas Jung authored
      6b166e2e
    • Andreas Jung's avatar
      removed annoying warning · 4c886874
      Andreas Jung authored
      4c886874
    • Andreas Jung's avatar
      · c6172d12
      Andreas Jung authored
      Fixed (hopefully) a longtime outstanding problem in parens():
      - the former regex never matched any parentheses
      - the parens() used old regex module API although 're' module was used
      c6172d12
    • Andreas Jung's avatar
      Fixed (hopefully) a longtime outstanding problem in parens(): · fe555b16
      Andreas Jung authored
      - the former regex never matched any parentheses
      - the parens() used old regex module API although 're' module was used
      fe555b16
  2. 04 Jun, 2001 12 commits
  3. 03 Jun, 2001 1 commit
  4. 02 Jun, 2001 1 commit
    • Fred Drake's avatar
      · 812809bd
      Fred Drake authored
      Fix imports so that XML import works with Python 2.1.  The addition of
      __all__ to the pickle module, and the import constraints that causes symbols
      not listed in __all__ not to be imported by "import *", caused these modules
      to break because some names were not acquired from the pickle module which
      had been acquired before.
      
      This patch adds the appropriate imports so that dependence on the pickle
      module's implementation details is avoided.
      812809bd
  5. 01 Jun, 2001 17 commits