Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialStephen Cole
Courses Plus Student 15,809 PointsWhat about the #!/usr/bin/env python3 line at the beginning of a file. Does it interfere with doing a doc test?
What about the #!/usr/bin/env python3 line at the beginning of a file. Does it interfere with doing a doc test?
1 Answer
Ari Misha
19,323 PointsHiya Stephen! It doesnt interfere with your tests at all. This namespace references to the "environment" object in your Python file system , and it tells Python interpreter to look for the current "environment" before executing the code below. If you're using Linux OS or MAC OS , you're required to mention this namespace , but if you're on windows, ya dont need to worry about it at all. I hope it helped! (: