1. 31 Jul, 2018 1 commit
  2. 30 Jul, 2018 6 commits
  3. 29 Jul, 2018 6 commits
  4. 28 Jul, 2018 9 commits
  5. 27 Jul, 2018 4 commits
  6. 26 Jul, 2018 10 commits
  7. 25 Jul, 2018 4 commits
    • chason's avatar
      bpo-32663 Make SMTPUTF8SimTests run (#5314) · 48ed88a9
      chason authored
      Enable and fix SMTPUTF8SimTests in test_smtplib.
      
      The tests for SMTPUTF8SimTests in test_smtplib.py were not actually
      being run because test_smtplib was still using the 'test_main' pattern,
      and the class was never added to test_main.
      
      Additionally, one of the tests needed to be moved to the non-UTF8 server
      class because it relies on the server not being UTF-8 compatible (and it
      had a bug in in).
      48ed88a9
    • Victor Stinner's avatar
      bpo-34228: Allow PYTHONTRACEMALLOC=0 (GH-8467) · 60b04c9f
      Victor Stinner authored
      PYTHONTRACEMALLOC=0 environment variable and -X tracemalloc=0 command
      line option are now allowed to disable explicitly tracemalloc at
      startup.
      60b04c9f
    • Ammar Askar's avatar
      bpo-29097: Forego fold detection on windows for low timestamp values (GH-2385) · 96d1e69a
      Ammar Askar authored
      On Windows, passing a negative value to local results in an OSError because localtime_s on Windows does not support negative timestamps. Unfortunately this means that fold detection for timestamps between 0 and max_fold_seconds will result in this OSError since we subtract max_fold_seconds from the timestamp to detect a fold. However, since we know there haven't been any folds in the interval [0, max_fold_seconds) in any timezone, we can hackily just forego fold detection for this time range on Windows.
      96d1e69a
    • Berker Peksag's avatar