Property changes on: .
___________________________________________________________________
Name: svn:ignore
- build
dist
*.egg-info
MANIFEST
*.pyc
+ build
dist
*.egg-info
MANIFEST
*.pyc
.settings
.project
.pydevproject
|
|
|
47 | 47 | |
48 | 48 | # We want to honor both $PYTHONSTARTUP and .pythonrc.py, so follow system |
49 | 49 | # conventions and get $PYTHONSTARTUP first then import user. |
50 | | if not use_plain: |
51 | | pythonrc = os.environ.get("PYTHONSTARTUP") |
52 | | if pythonrc and os.path.isfile(pythonrc): |
53 | | try: |
54 | | execfile(pythonrc) |
55 | | except NameError: |
56 | | pass |
57 | | # This will import .pythonrc.py as a side-effect |
58 | | import user |
| 50 | pythonrc = os.environ.get("PYTHONSTARTUP") |
| 51 | if pythonrc and os.path.isfile(pythonrc): |
| 52 | try: |
| 53 | execfile(pythonrc) |
| 54 | except NameError: |
| 55 | pass |
| 56 | # This will import .pythonrc.py as a side-effect |
| 57 | import user |
59 | 58 | code.interact(local=imported_objects) |