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
test_doctest2.txt
This is a sample doctest in a text file.

In this example, we'll rely on some silly setup:

  >>> import test.test_doctest
  >>> test.test_doctest.sillySetup
  True

This test also has some (random) encoded (utf-8) unicode text:

  ЉЊЈЁЂ

This doesn't cause a problem in the tect surrounding the examples, but
we include it here (in this test text file) to make sure. :)
back to top