File tree 2 files changed +1
-13
lines changed
2 files changed +1
-13
lines changed Original file line number Diff line number Diff line change 16
16
package_dir = {"" : "src" },
17
17
packages = ["cs50" ],
18
18
url = "https://github.com/cs50/python-cs50" ,
19
- version = "2.4.5 "
19
+ version = "3.0.0 "
20
20
)
Original file line number Diff line number Diff line change @@ -53,18 +53,6 @@ def read(self, size):
53
53
sys .stdout = flushfile (sys .stdout )
54
54
55
55
56
- def eprint (* args , ** kwargs ):
57
- """
58
- Print an error message to standard error, prefixing it with
59
- file name and line number from which method was called.
60
- """
61
- end = kwargs .get ("end" , "\n " )
62
- sep = kwargs .get ("sep" , " " )
63
- (filename , lineno ) = inspect .stack ()[1 ][1 :3 ]
64
- print ("{}:{}: " .format (filename , lineno ), end = "" )
65
- print (* args , end = end , file = sys .stderr , sep = sep )
66
-
67
-
68
56
def formatException (type , value , tb ):
69
57
"""
70
58
Format traceback, darkening entries from global site-packages directories
You can’t perform that action at this time.
0 commit comments