Linux ns8.secondary29.go.th 2.6.32-754.28.1.el6.x86_64 #1 SMP Wed Mar 11 18:38:45 UTC 2020 x86_64
Apache/2.2.15 (CentOS)
: 122.154.134.11 | : 122.154.134.9
Cant Read [ /etc/named.conf ]
5.6.40
apache
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
numpy-1.4.1 /
[ HOME SHELL ]
Name
Size
Permission
Action
docs-f2py
[ DIR ]
drwxr-xr-x
1.3.0-notes.rst
9.83
KB
-rw-r--r--
1.4.0-notes.rst
9.03
KB
-rw-r--r--
1.4.1-notes.rst
567
B
-rw-r--r--
COMPATIBILITY
1.58
KB
-rw-r--r--
DEV_README.txt
687
B
-rw-r--r--
LICENSE.txt
1.51
KB
-rw-r--r--
README.txt
783
B
-rw-r--r--
THANKS.txt
3.04
KB
-rw-r--r--
site.cfg.example
4.89
KB
-rw-r--r--
time_based_proposal.rst
6.54
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : COMPATIBILITY
X.flat returns an indexable 1-D iterator (mostly similar to an array but always 1-d) --- only has .copy and .__array__ attributes of an array!!! .typecode() --> .dtype.char .iscontiguous() --> .flags['CONTIGUOUS'] or .flags.contiguous .byteswapped() -> .byteswap() .itemsize() -> .itemsize .toscalar() -> .item() If you used typecode characters: 'c' -> 'S1' or 'c' 'b' -> 'B' '1' -> 'b' 's' -> 'h' 'w' -> 'H' 'u' -> 'I' C -level some API calls that used to take PyObject * now take PyArrayObject * (this should only cause warnings during compile and not actual problems). PyArray_Take These commands now return a buffer that must be freed once it is used using PyMemData_FREE(ptr); a->descr->zero --> PyArray_Zero(a) a->descr->one --> PyArray_One(a) Numeric/arrayobject.h --> numpy/oldnumeric.h # These will actually work and are defines for PyArray_BYTE, # but you really should change it in your code PyArray_CHAR --> PyArray_CHAR (or PyArray_STRING which is more flexible) PyArray_SBYTE --> PyArray_BYTE Any uses of character codes will need adjusting.... use PyArray_XXXLTR where XXX is the name of the type. If you used function pointers directly (why did you do that?), the arguments have changed. Everything that was an int is now an intp. Also, arrayobjects should be passed in at the end. a->descr->cast[i](fromdata, fromstep, todata, tostep, n) a->descr->cast[i](fromdata, todata, n, PyArrayObject *in, PyArrayObject *out) anything but single-stepping is not supported by this function use the PyArray_CastXXXX functions.
Close