|
Size: 413
Comment: add FILE, DIR idea
|
Size: 588
Comment: add __abs_file__, __abs_dir__
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 6: | Line 6: |
| discussion: [3], status: Sep 28 18:51:29 CEST 2013 | |
| Line 7: | Line 8: |
| variant_set_1: - from os.path import FILE, DIR - from hacks import FILE, DIR - from future import FILE, DIR |
variants: - name: with import (28 compatible) set: - from os.path import FILE, DIR - from hacks import FILE, DIR - from future import FILE, DIR |
| Line 12: | Line 15: |
| variant_set_2: - FILE, DIR - __file__, __dir__ |
- name: auto global set: - FILE, DIR - __file__, __dir__ - __abs_file__, __abs_dir__ (MRAB, Philipp A.) |
| Line 18: | Line 23: |
| 1. http://www.php.net/manual/en/language.constants.predefined.php 2. https://docs.python.org/3.5/whatsnew/3.4.html |
1. http://www.php.net/manual/en/language.constants.predefined.php 2. https://docs.python.org/3.5/whatsnew/3.4.html |
FILE, DIR
inspired by: PHP __DIR__, __FILE__ [1]
status:
python34: __file__ is absolute [2]
discussion: [3], status: Sep 28 18:51:29 CEST 2013
variants:
- name: with import (28 compatible)
set:
- from os.path import FILE, DIR
- from hacks import FILE, DIR
- from future import FILE, DIR
- name: auto global
set:
- FILE, DIR
- __file__, __dir__
- __abs_file__, __abs_dir__ (MRAB, Philipp A.)