File: imports.py

package info (click to toggle)
python-jedi 0.10.0~git1%2Bf05c071-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 2,064 kB
  • ctags: 3,014
  • sloc: python: 16,997; makefile: 149; ansic: 13
file content (25 lines) | stat: -rw-r--r-- 378 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25

#! 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