1 |
|
# |
2 |
|
# i-scream pystatgrab |
3 |
< |
# http://www.i-scream.org |
3 |
> |
# http://www.i-scream.org/pystatgrab/ |
4 |
|
# Copyright (C) 2000-2004 i-scream |
5 |
|
# |
6 |
|
# This program is free software; you can redistribute it and/or |
28 |
|
return _statgrab.py_sg_drop_privileges() |
29 |
|
def sg_set_error(code, arg=''): |
30 |
|
return _statgrab.py_sg_set_error(code, arg) |
31 |
+ |
def sg_set_error_with_errno(code, arg=''): |
32 |
+ |
return _statgrab.py_sg_set_error_with_errno(code, arg) |
33 |
|
def sg_get_error(): |
34 |
|
return _statgrab.py_sg_get_error() |
35 |
|
def sg_get_error_arg(): |
36 |
|
return _statgrab.py_sg_get_error_arg() |
37 |
+ |
def sg_get_error_errno(): |
38 |
+ |
return _statgrab.py_sg_get_error_errno() |
39 |
|
def sg_str_error(code): |
40 |
|
return _statgrab.py_sg_str_error(code) |
41 |
|
def sg_get_host_info(): |