boostorg / python

Boost.org python module
http://boostorg.github.io/python
Boost Software License 1.0
468 stars 201 forks source link

Bug in example code for Embedding page in Boost.Python tutorial #353

Open BongoVR opened 3 years ago

BongoVR commented 3 years ago

Hi all,

on page https://www.boost.org/doc/libs/1_75_0/libs/python/doc/html/tutorial/tutorial/embedding.html there is a bug in the example code.

The line object ignored = exec("hello = file('hello.txt', 'w')\n" will cause an error_already_set exception (using Python 3.7 on Windows 10).

The line should read object ignored = exec("hello = open('hello.txt', 'w+')\n"

Best regards