Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(26)

Unified Diff: third_party/typ/typ/__main__.py

Issue 660133004: Roll typ to v0.8.5 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/typ/typ/__init__.py ('k') | third_party/typ/typ/arg_parser.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/typ/typ/__main__.py
diff --git a/third_party/typ/typ/__main__.py b/third_party/typ/typ/__main__.py
index 3b8b54134333843560ef90d8211a29a4ceccd676..375e3e2a1aaa93c4dfc21c30c6a7fd08fcfa1be5 100644
--- a/third_party/typ/typ/__main__.py
+++ b/third_party/typ/typ/__main__.py
@@ -14,11 +14,8 @@
import sys
-from typ import main, spawn_main
+from typ import main
if __name__ == '__main__':
- if sys.platform == 'win32': # pragma: win32
- sys.exit(spawn_main(sys.argv[1:], sys.stdout, sys.stderr))
- else: # pragma: no win32
- sys.exit(main())
+ sys.exit(main(win_multiprocessing='spawn'))
« no previous file with comments | « third_party/typ/typ/__init__.py ('k') | third_party/typ/typ/arg_parser.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698