1. 28 Jan, 2006 1 commit
    • Thomas Wouters's avatar
      Work around a Solaris peculiarity that caused test_pty to sometimes fail: a · 35f34f8d
      Thomas Wouters authored
      tty opened by os.openpty() isn't always a tty according to os.isatty(), when
      it's tested inside the process that opened it. Doesn't affect actual
      functionality, as using a tty this way is rarely, if ever, useful. Ignoring
      the failure allows the test for actual functionality to continue.
      
      Will backport to 2.4-maint.
      35f34f8d
  2. 27 Jan, 2006 3 commits
  3. 26 Jan, 2006 1 commit
  4. 25 Jan, 2006 4 commits
  5. 24 Jan, 2006 8 commits
  6. 23 Jan, 2006 13 commits
  7. 22 Jan, 2006 6 commits
  8. 21 Jan, 2006 3 commits
    • Walter Dörwald's avatar
      Fix typo · 9d9af8ac
      Walter Dörwald authored
      9d9af8ac
    • Georg Brandl's avatar
      Bug #902075: urllib2 now handles "host:port" proxy specifications · 531cebad
      Georg Brandl authored
      
      Can/should this be backported?
      531cebad
    • Tim Peters's avatar
      _compile(): raise an exception if downcasting to SRE_CODE · 3d563509
      Tim Peters authored
      loses information:
      
          OverflowError: regular expression code size limit exceeded
      
      Otherwise the compiled code is gibberish, possibly leading at
      least to wrong results or (as reported on c.l.py) internal
      sre errors at match time.
      
      I'm not sure how to test this.  SRE_CODE is a 2-byte type on
      my box, and it's easy to create a regexp that causes the new
      exception to trigger here.  But it may be a 4-byte type on
      other boxes, and creating a regexp large enough to trigger
      problems there would be pretty crazy.
      
      Bugfix candidate.
      3d563509
  9. 20 Jan, 2006 1 commit