Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(4704)

Delta Between Two Patch Sets: Lib/venv/__init__.py

Issue 15307: Patch for --symlink support in pyvenv with framework python
Left Patch Set: Created 10 months, 1 week ago
Right Patch Set: Created 10 months, 1 week ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « Lib/test/test_venv.py ('k') | Mac/Tools/pythonw.c » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(Both sides are equal)
1 """ 1 """
2 Virtual environment (venv) package for Python. Based on PEP 405. 2 Virtual environment (venv) package for Python. Based on PEP 405.
3 3
4 Copyright (C) 2011-2012 Vinay Sajip. 4 Copyright (C) 2011-2012 Vinay Sajip.
5 Licensed to the PSF under a contributor agreement. 5 Licensed to the PSF under a contributor agreement.
6 6
7 usage: python -m venv [-h] [--system-site-packages] [--symlinks] [--clear] 7 usage: python -m venv [-h] [--system-site-packages] [--symlinks] [--clear]
8 [--upgrade] 8 [--upgrade]
9 ENV_DIR [ENV_DIR ...] 9 ENV_DIR [ENV_DIR ...]
10 10
(...skipping 378 matching lines...) Expand 10 before | Expand all | Expand 10 after
389 builder.create(d) 389 builder.create(d)
390 390
391 if __name__ == '__main__': 391 if __name__ == '__main__':
392 rc = 1 392 rc = 1
393 try: 393 try:
394 main() 394 main()
395 rc = 0 395 rc = 0
396 except Exception as e: 396 except Exception as e:
397 print('Error: %s' % e, file=sys.stderr) 397 print('Error: %s' % e, file=sys.stderr)
398 sys.exit(rc) 398 sys.exit(rc)
LEFTRIGHT

RSS Feeds Recent Issues | This issue
This is Rietveld cbc36f91f3f7