| LEFT | RIGHT |
| (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 Loading... |
| 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) |
| LEFT | RIGHT |