Alexander Belopolsky <alexander.belopol...@gmail.com> added the comment:

I don't think the Windows example in the reST documentation is correct:


      >>> print(shutil.which("python"))
      'c:\\python33\\python.exe'

It should be either

      >>> shutil.which("python")
      'c:\\python33\\python.exe'

or

      >>> print(shutil.which("python"))
      c:\python33\python.exe

----------
nosy: +belopolsky

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue444582>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to