[issue33095] Cross-reference isolated mode from relevant locations

2020-01-04 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Closing since PRs were merged. Thanks for the review. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue33095] Cross-reference isolated mode from relevant locations

2019-09-16 Thread Julien Palard
Julien Palard added the comment: New changeset 210dc3bb37ec57a8b8b16ffe0881181138a6e973 by Julien Palard in branch '3.7': [3.7] bpo-33095: Add reference to isolated mode in -m and script option (GH-7764) (GH-16181)

[issue33095] Cross-reference isolated mode from relevant locations

2019-09-16 Thread miss-islington
miss-islington added the comment: New changeset 07186c3959a61c3d73b5ccae431cdd32afe70e5e by Miss Islington (bot) in branch '3.8': bpo-33095: Add reference to isolated mode in -m and script option (GH-7764) https://github.com/python/cpython/commit/07186c3959a61c3d73b5ccae431cdd32afe70e5e

[issue33095] Cross-reference isolated mode from relevant locations

2019-09-16 Thread Julien Palard
Change by Julien Palard : -- pull_requests: +15791 pull_request: https://github.com/python/cpython/pull/16181 ___ Python tracker ___

[issue33095] Cross-reference isolated mode from relevant locations

2019-09-16 Thread miss-islington
Change by miss-islington : -- pull_requests: +15790 pull_request: https://github.com/python/cpython/pull/16180 ___ Python tracker ___

[issue33095] Cross-reference isolated mode from relevant locations

2019-09-13 Thread Nick Coghlan
Nick Coghlan added the comment: New changeset bdd6945d4dbd1fe6a7fcff95f7d6908db7d791a1 by Nick Coghlan (Xtreak) in branch 'master': bpo-33095: Add reference to isolated mode in -m and script option (GH-7764) https://github.com/python/cpython/commit/bdd6945d4dbd1fe6a7fcff95f7d6908db7d791a1

[issue33095] Cross-reference isolated mode from relevant locations

2018-06-17 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- pull_requests: +7372 stage: needs patch -> patch review ___ Python tracker ___ ___

[issue33095] Cross-reference isolated mode from relevant locations

2018-06-17 Thread Nick Coghlan
Nick Coghlan added the comment: xtreak: if you're familiar with GitHub workflows, then we now accept docs and code updates as GitHub PRs: https://devguide.python.org/pullrequest/ The parts about running the tests aren't exactly relevant here, what's more relevant is building the

[issue33095] Cross-reference isolated mode from relevant locations

2018-06-16 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: There are four parts where I could see sys.path manipulation being mentioned while running scripts : -c option (https://docs.python.org/3/using/cmdline.html#cmdoption-c) -m option (https://docs.python.org/3/using/cmdline.html#cmdoption-m) -

[issue33095] Cross-reference isolated mode from relevant locations

2018-03-18 Thread Jakub Wilk
Change by Jakub Wilk : -- nosy: -jwilk ___ Python tracker ___ ___ Python-bugs-list mailing

[issue33095] Cross-reference isolated mode from relevant locations

2018-03-17 Thread Nick Coghlan
New submission from Nick Coghlan : In https://bugs.python.org/issue33053#msg313966, jwilk noted that it isn't obvious from https://docs.python.org/3/using/cmdline.html#cmdoption-m how to keep the current directory from being added to `sys.path` when using the -m switch.