1. 13 Jul, 2004 3 commits
    • Andrew M. Kuchling's avatar
      Wordsmithing · 2a510ce1
      Andrew M. Kuchling authored
      2a510ce1
    • Brett Cannon's avatar
      Fixes a bug in testing code handling .pth files that did not restore the original · ee86a66d
      Brett Cannon authored
      module that is removed for testing "import" lines.  Originally deleted the
      entry from sys.modules and then just let other code that needed it to import it
      again.  Problem with this solution is that it lead to code that had already
      imported the module in question to have their own reference to a new copy of
      the module in question that new code couldn't reach.  This lead to a failure in
      test_strptime since it monkey-patched the 'time' module it had a reference to
      while _strptime had its own reference to another copy of 'time' from being
      imported by test___all__ that it was using for a calculation.
      
      Also moved the testing code out of the PthFile class and into the actual test
      class.  This was to stop using 'assert' which is useless with a -O execution.
      ee86a66d
    • Brett Cannon's avatar
      Add another point in the "Restrictions" section about how the handling of FTP · 71868e74
      Brett Cannon authored
      URLs will seemingly succeed to read a URL that points to a file whose
      permissions you do not have to read.
      
      Backport candidate once everyone agrees with the wording.
      71868e74
  2. 12 Jul, 2004 17 commits
  3. 11 Jul, 2004 10 commits
  4. 10 Jul, 2004 10 commits