| Server IP : 85.214.239.14 / Your IP : 216.73.216.27 Web Server : Apache/2.4.65 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 8.2.29 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /proc/3/cwd/proc/3/task/3/cwd/usr/lib/python2.7/distutils/ |
Upload File : |
�
�, bc @ s� d Z d Z d d l Z d d l Z d d l Z d d l m Z d d l m Z m Z d d l
m Z d d d � � YZ e j
d � Z d
� Z d d d d
� Z d S( ss distutils.filelist
Provides the FileList class, used for poking about the filesystem
and building lists of files.
s $Id$i����N( t convert_path( t DistutilsTemplateErrort DistutilsInternalError( t logt FileListc B s� e Z d Z d d d � Z d � Z e j d � Z d � Z d � Z
d � Z d � Z d � Z
d � Z d
� Z d d d d
� Z d d d d � Z RS( s� A list of files built by on exploring the filesystem and filtered by
applying various patterns to what we find there.
Instance attributes:
dir
directory from which files will be taken -- only used if
'allfiles' not supplied to constructor
files
list of filenames currently being built/filtered/manipulated
allfiles
complete list of files under consideration (ie. without any
filtering applied)
c C s d | _ g | _ d S( N( t Nonet allfilest files( t selft warnt debug_print( ( s( /usr/lib/python2.7/distutils/filelist.pyt __init__ s c C s
| | _ d S( N( R ( R R ( ( s( /usr/lib/python2.7/distutils/filelist.pyt set_allfiles$ s c C s t | � | _ d S( N( t findallR ( R t dir( ( s( /usr/lib/python2.7/distutils/filelist.pyR
'