mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-06 22:14:27 +08:00
24 lines
315 B
Python
24 lines
315 B
Python
|
|
#! import-error
|
|
import not_existing
|
|
|
|
import os
|
|
|
|
from os.path import abspath
|
|
#! import-error
|
|
from os.path import not_existing
|
|
|
|
from datetime import date
|
|
date.today
|
|
|
|
#! attribute-error
|
|
date.not_existing_attribute
|
|
|
|
#! import-error
|
|
from datetime.date import today
|
|
|
|
#! import-error
|
|
import datetime.date
|
|
|
|
import os.path
|