?PNG
IHDR ? f ??C1 sRGB ?? gAMA ?a pHYs ? ??od GIDATx^LeY?a?("Bh?_????q5k?*:t0A-o??]VkJM??f?8\k2ll1]q????T
Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found
in /home/user1137782/www/china1.by/classwithtostring.php on line 86
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 213
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 214
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 215
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 216
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 217
Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 218
\Kc @ s( d Z d Z d d k Z d d k i i Z d d k l Z l
Z
l Z l Z l
Z
l Z l Z l Z d Z d e d Z d Z e d Z d
f d YZ d f d
YZ d Z d e f d YZ d e f d YZ d e f d YZ d f d YZ e d d Z d S( s@ A collection of functions designed to help I/O with ascii files.s restructuredtext eniN( t boolt intt longt floatt complext objectt unicodet strc C s- y | d Wn t t f j
o t SXt S( s2
Check whether obj behaves like a string.
t ( t TypeErrort
ValueErrort Falset True( t obj( ( s8 /usr/lib64/python2.6/site-packages/numpy/lib/_iotools.pyt _is_string_like s
t rc C s t | oz | i d o" d d k } | i | | } n? | i d o d d k } | i | } n t | | } t } n- t | d o | } t } n
t
d | o | | f S| S( s
Returns the filehandle corresponding to a string or a file.
If the string ends in '.gz', the file is automatically unzipped.
Parameters
----------
fname : string, filehandle
Name of the file whose filehandle must be returned.
flag : string, optional
Flag indicating the status of the file ('r' for read, 'w' for write).
return_opened : boolean, optional
Whether to return the opening status of the file.
s .gziNs .bz2t seeks% fname must be a string or file handle( R t endswitht gzipt opent bz2t BZ2Filet fileR t hasattrR R
( t fnamet flagt
return_openedR t fhdR t opened( ( s8 /usr/lib64/python2.6/site-packages/numpy/lib/_iotools.pyt _to_filehandle s
c C s2 x+ | i p d D] } | | i o t Sq Wt S( s
Returns whether one or several fields of a dtype are nested.
Parameters
----------
ndtype : dtype
Data-type of a structured array.
Raises
------
AttributeError : If `ndtype` does not have a `names` attribute.
Examples
--------
>>> dt = np.dtype([('name', 'S4'), ('x', float), ('y', float)])
>>> np.lib._iotools.has_nested_fields(dt)
False
( ( t namesR R ( t ndtypet name( ( s8 /usr/lib64/python2.6/site-packages/numpy/lib/_iotools.pyt has_nested_fields6 s
c C s | i } | d j o3 | o! | i g t t i | i S| i g Sg } x= | D]5 } | i | \ } } t | | } | i | qV W| Sd S( s6
Unpack a structured data-type by collapsing nested fields and/or fields
with a shape.
Note that the field names are lost.
Parameters
----------
ndtype : dtype
The datatype to collapse
flatten_base : {False, True}, optional
Whether to transform a field with a shape into several fields or not.
Examples
--------
>>> dt = np.dtype([('name', 'S4'), ('x', float), ('y', float),
... ('block', int, (2, 3))])
>>> np.lib._iotools.flatten_dtype(dt)
[dtype('|S4'), dtype('float64'), dtype('float64'), dtype('int32')]
>>> np.lib._iotools.flatten_dtype(dt, flatten_base=True)
[dtype('|S4'), dtype('float64'), dtype('float64'), dtype('int32'),
dtype('int32'), dtype('int32'), dtype('int32'), dtype('int32'),
dtype('int32')]
N(
R t Nonet baseR t npt prodt shapet fieldst
flatten_dtypet extend( R t flatten_baseR t typest fieldt typt _t flat_dt( ( s8 /usr/lib64/python2.6/site-packages/numpy/lib/_iotools.pyR( P s
! t LineSplitterc B sM e Z d Z d Z d d e d Z d Z d Z d Z d Z
RS( s
Object to split a string at a given delimiter or at given places.
Parameters
----------
delimiter : str, int, or sequence of ints, optional
If a string, character used to delimit consecutive fields.
If an integer or a sequence of integers, width(s) of each field.
comment : str, optional
Character used to mark the beginning of a comment. Default is '#'.
autostrip : bool, optional
Whether to strip each individual field. Default is True.
c s
f d S( s
Wrapper to strip each member of the output of `method`.
Parameters
----------
method : function
Function that takes a single argument and returns a sequence of
strings.
Returns
-------
wrapped : function
The result of wrapping `method`. `wrapped` takes a single input
argument and returns a list of strings that are stripped of
white-space.
c s+ g } | D] } | | i q ~ S( ( t strip( t inputt _[1]R. ( t method( s8 /usr/lib64/python2.6/site-packages/numpy/lib/_iotools.pyt