1. 15 Apr, 2016 3 commits
  2. 14 Apr, 2016 5 commits
  3. 13 Apr, 2016 4 commits
  4. 12 Apr, 2016 5 commits
  5. 11 Apr, 2016 8 commits
  6. 10 Apr, 2016 5 commits
  7. 09 Apr, 2016 6 commits
  8. 08 Apr, 2016 2 commits
  9. 06 Apr, 2016 2 commits
    • Martin Panter's avatar
      Issue #26257: Eliminate buffer_tests.py and fix ByteArrayAsStringTest · 0268628b
      Martin Panter authored
      ByteArrayAsStringTest.fixtype() was converting test data to bytes, not byte-
      array, therefore many of the test cases inherited in this class were not
      actually being run on the bytearray type.
      
      The tests in buffer_tests.py were redundant with methods in string_tests
      .MixinStrUnicodeUserStringTest and string_tests.CommonTest. These methods are
      now moved into string_tests.BaseTest, where they will also get run for bytes
      and bytearray.
      
      This change also moves test_additional_split(), test_additional_rsplit(), and
      test_strip() from CommonTest to BaseTest, meaning these tests are now run for
      bytes and bytearray. I plan to eliminate redundancies with existing tests in
      test_bytes.py soon.
      0268628b
    • Steve Dower's avatar
      b6593e43