-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable fileinfo attributes on windows (#142)
* Enable fileinfo and statinfo attributes on windows * Updated changelog
- Loading branch information
Showing
18 changed files
with
630 additions
and
1,208 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,34 @@ | ||
# This file is part of ssh2-python. | ||
# Copyright (C) 2017 Panos Kittenis | ||
|
||
# | ||
# This library is free software; you can redistribute it and/or | ||
# modify it under the terms of the GNU Lesser General Public | ||
# License as published by the Free Software Foundation, version 2.1. | ||
|
||
# | ||
# This library is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
# Lesser General Public License for more details. | ||
|
||
# | ||
# You should have received a copy of the GNU Lesser General Public | ||
# License along with this library; if not, write to the Free Software | ||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | ||
|
||
from libc.time cimport time_t | ||
from posix.types cimport blkcnt_t, blksize_t, dev_t, gid_t, ino_t, \ | ||
nlink_t, off_t, time_t, uid_t, mode_t | ||
|
||
|
||
cdef extern from "<sys/stat.h>" nogil: | ||
cdef struct struct_stat "stat": | ||
dev_t st_dev | ||
ino_t st_ino | ||
mode_t st_mode | ||
nlink_t st_nlink | ||
uid_t st_uid | ||
gid_t st_gid | ||
dev_t st_rdev | ||
off_t st_size | ||
blksize_t st_blksize | ||
blkcnt_t st_blocks | ||
long st_dev | ||
unsigned long st_ino | ||
unsigned long st_mode | ||
long st_nlink | ||
long st_uid | ||
long st_gid | ||
long st_rdev | ||
unsigned long long st_size | ||
long st_blksize | ||
long st_blocks | ||
time_t st_atime | ||
time_t st_mtime | ||
time_t st_ctime |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.