1. 22 Nov, 2007 9 commits
  2. 21 Nov, 2007 14 commits
  3. 20 Nov, 2007 10 commits
  4. 19 Nov, 2007 7 commits
    • Amaury Forgeot d'Arc's avatar
      Correct test_cvs on Windows, as suggested by Raghuram Devarakonda · 10c476db
      Amaury Forgeot d'Arc authored
      in issue1395. All other places in this file already use newline=''...
      
      Also check that csv.reader is given an iterable returning strings.
      10c476db
    • Amaury Forgeot d'Arc's avatar
      Oops, I missed this one again (test_univnewlines fails): · a2d1d7e3
      Amaury Forgeot d'Arc authored
      Some incremental decoders return multiple characters, even when fed with
      only one more byte. In this case the tell() state must subtract the
      number of extra characters.
      a2d1d7e3
    • Amaury Forgeot d'Arc's avatar
      Issue1395: Universal mode used to duplicate newlines when using read(1). · 1ff9910f
      Amaury Forgeot d'Arc authored
      "Universal newline" is now an incremental decoder wrapping the initial one,
      with its own additional buffer (if '\r' is seen at the end of the input).
      
      A decoder allows the tell() funtion to record the state of the translation.
      This also simplifies the readline() process.
      
      Now test_netrc passes on Windows, as well as many new tests in test_io.py
      1ff9910f
    • Guido van Rossum's avatar
      Make test_cmd_line_scripts pass by using a unicode string instead of · 74c29c71
      Guido van Rossum authored
      a bytes string to hold argv0 in RunMainFromImporter().
      Also changed the code lay-out a bit to be more readable (for me :-),
      and print any unexpected errors rather than suppressing them.
      74c29c71
    • Christian Heimes's avatar
      Fixed build order of the _ssl project. The openssl project needs to come first... · 82f013bb
      Christian Heimes authored
      Fixed build order of the _ssl project. The openssl project needs to come first because the makefile puts the header files in the right place.
      Added some optimization flags to the Release builds of pythoncore and the executables.
      82f013bb
    • Guido van Rossum's avatar
      Merged revisions 59041-59055 via svnmerge from · 87c0f1d1
      Guido van Rossum authored
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r59044 | neal.norwitz | 2007-11-18 17:46:20 -0800 (Sun, 18 Nov 2007) | 1 line
      
        Use a slightly more recent version than 1.5.2b2.
      ........
        r59047 | walter.doerwald | 2007-11-19 04:14:05 -0800 (Mon, 19 Nov 2007) | 2 lines
      
        Fix typo in comment.
      ........
        r59049 | walter.doerwald | 2007-11-19 04:41:10 -0800 (Mon, 19 Nov 2007) | 4 lines
      
        Fix for #1444: utf_8_sig.StreamReader was (indirectly through decode())
        calling codecs.utf_8_decode() with final==True, which falled with incomplete
        byte sequences. Fix and test by James G. Sack.
      ........
        r59051 | nick.coghlan | 2007-11-19 05:56:27 -0800 (Mon, 19 Nov 2007) | 1 line
      
        Enable some test_cmd_line_script debugging output to investigate failure on Mac OSX buildbot
      ........
        r59053 | facundo.batista | 2007-11-19 08:30:24 -0800 (Mon, 19 Nov 2007) | 3 lines
      
      
        Fixed detail in add_type() explanation (issue 1463).
      ........
        r59054 | guido.van.rossum | 2007-11-19 09:35:24 -0800 (Mon, 19 Nov 2007) | 2 lines
      
        Make this work stand-alone, too.
      ........
        r59055 | guido.van.rossum | 2007-11-19 09:50:22 -0800 (Mon, 19 Nov 2007) | 3 lines
      
        Fix the OSX failures in this test -- they were due to /tmp being a symlink
        to /private/tmp.  Adding a call to os.path.realpath() to temp_dir() fixed it.
      ........
      87c0f1d1
    • Guido van Rossum's avatar
      Tweak the imports so this script will run stand-alone. · 87afcbfe
      Guido van Rossum authored
      (No, this doesn't fix the bugs on OSX.)
      87afcbfe