mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-06 14:04:26 +08:00
26 lines
378 B
Python
26 lines
378 B
Python
|
|
#! 7 import-error
|
|
import not_existing
|
|
|
|
import os
|
|
|
|
from os.path import abspath
|
|
#! 20 import-error
|
|
from os.path import not_existing
|
|
|
|
from datetime import date
|
|
date.today
|
|
|
|
#! 5 attribute-error
|
|
date.not_existing_attribute
|
|
|
|
#! 14 import-error
|
|
from datetime.date import today
|
|
|
|
#! 16 import-error
|
|
import datetime.date
|
|
#! 7 import-error
|
|
import not_existing_nested.date
|
|
|
|
import os.path
|