Staging
v0.5.1
https://github.com/python/cpython
Revision 6979fcdc91114b1ccb16345e26734d6df4cccbc3 authored by Victor Stinner on 28 November 2017, 22:04:12 UTC, committed by GitHub on 28 November 2017, 22:04:12 UTC
* turtledemo: wait until macOS osascript command completes to not
  create a zombie process
* Tools/scripts/treesync.py: declare 'default_answer' and
  'create_files' as globals to modify them with the command line
  arguments. Previously, -y, -n, -f and -a options had no effect.

flake8 warning: "F841 local variable 'p' is assigned to but never
used".
1 parent 5f6d2bb
Raw File
Tip revision: 6979fcdc91114b1ccb16345e26734d6df4cccbc3 authored by Victor Stinner on 28 November 2017, 22:04:12 UTC
bpo-32155: Bugfixes found by flake8 F841 warnings (#4619)
Tip revision: 6979fcd
outstanding_bugs.py
#
# This file is for everybody to add tests for bugs that aren't
# fixed yet. Please add a test case and appropriate bug description.
#
# When you fix one of the bugs, please move the test to the correct
# test_ module.
#

import unittest
from test import support

#
# No test cases for outstanding bugs at the moment.
#


if __name__ == "__main__":
    unittest.main()
back to top