1. 23 Jul, 2006 14 commits
  2. 22 Jul, 2006 2 commits
  3. 21 Jul, 2006 8 commits
  4. 20 Jul, 2006 6 commits
  5. 19 Jul, 2006 3 commits
    • Martin v. Löwis's avatar
      Revert r50706 (Whitespace normalization) and · d234254f
      Martin v. Löwis authored
      r50697: Comments and docs cleanups, and some little fixes
      per recommendation from Raymond Hettinger.
      d234254f
    • Thomas Heller's avatar
      Make sure the _ctypes extension can be compiled when WITH_THREAD is · 081efb40
      Thomas Heller authored
      not defined on Windows, even if that configuration is probably not
      supported at all.
      081efb40
    • Tim Peters's avatar
      SF bug 1524317: configure --without-threads fails to build · 1cde3396
      Tim Peters authored
      Moved the code for _PyThread_CurrentFrames() up, so it's no longer
      in a huge "#ifdef WITH_THREAD" block (I didn't realize it /was/ in
      one).
      
      Changed test_sys's test_current_frames() so it passes with or without
      thread supported compiled in.
      
      Note that test_sys fails when Python is compiled without threads,
      but for an unrelated reason (the old test_exit() fails with an
      indirect ImportError on the `thread` module).  There are also
      other unrelated compilation failures without threads, in extension
      modules (like ctypes); at least the core compiles again.
      
      Do we really support --without-threads?  If so, there are several
      problems remaining.
      1cde3396
  6. 18 Jul, 2006 5 commits
  7. 17 Jul, 2006 2 commits
    • Barry Warsaw's avatar
      decode_rfc2231(): Be more robust against buggy RFC 2231 encodings. · 2beabecc
      Barry Warsaw authored
      Specifically, instead of raising a ValueError when there is a single tick in
      the parameter, simply return that the entire string unquoted, with None for
      both the charset and the language.  Also, if there are more than 2 ticks in
      the parameter, interpret the first three parts as the standard RFC 2231 parts,
      then the rest of the parts as the encoded string.
      
      Test cases added.
      
      Original fewer-than-3-parts fix by Tokio Kikuchi.
      
      Resolves SF bug # 1218081.  I will back port the fix and tests to Python 2.4
      (email 3.0) and Python 2.3 (email 2.5).
      
      Also, bump the version number to email 4.0.1, removing the 'alpha' moniker.
      2beabecc
    • Kurt B. Kaiser's avatar
      Patch 1479219 - Tal Einat · c907d15a
      Kurt B. Kaiser authored
      1. 'as' highlighted as builtin in comment string on import line
      2. Comments such as "#False identity" which start with a keyword immediately
         after the '#' character aren't colored as comments.
      3. u or U beginning unicode string not correctly highlighted
      
      Closes bug 1325071
      c907d15a