Your IP : 216.73.216.213


Current Path : /opt/alt/python35/lib64/python3.5/site-packages/numpy/distutils/__pycache__/
Upload File :
Current File : //opt/alt/python35/lib64/python3.5/site-packages/numpy/distutils/__pycache__/lib2def.cpython-35.pyc



(��^�
�@s�ddlmZmZmZddlZddlZddlZddlZdZdZ	de
ejdd��ZdZ
deZejd	eej�Zejd
eej�Zdd�Zd
ddegdd�Zdd�Zejdd�Zedkr�e�\ZZedkr0ejZneed�Zee
�ee�gZee�Zee�\ZZ eee ee�dS)�)�division�absolute_import�print_functionNa�This module generates a DEF file from the symbols in
an MSVC-compiled DLL import library.  It correctly discriminates between
data and functions.  The data is collected from the output of the program
nm(1).

Usage:
    python lib2def.py [libname.lib] [output.def]
or
    python lib2def.py [libname.lib] > output.def

libname.lib defaults to python<py_ver>.lib and output.def defaults to stdout

Author: Robert Kern <kernr@mail.ncifcrf.gov>
Last Update: April 30, 1999
z0.1az%d%d�znm -CszrLIBRARY         python%s.dll
;CODE           PRELOAD MOVEABLE DISCARDABLE
;DATA           PRELOAD SINGLE

EXPORTS
z^(.*) in python%s\.dllz^_imp__(.*) in python%s\.dllcCsqttj�dkr�tjddd�dkrktjddd�dkrktjdd�\}}qgtjdd
d�dkr�tjddd�dkr�tjdd�\}}qgtd�td	�n�ttj�dkrWtjddd�dkr$tjd}d
t}qgtjddd�dkrgd}tjd}nd
t}d}||fS)zBParses the command-line arguments.

libfile, deffile = parse_cmd()���Nz.librz.defz4I'm assuming that your first argument is the libraryzand the second is the DEF file.zpython%s.lib���r	r	r	r	r	)�len�sys�argv�print�py_ver)�libfile�deffile�r�J/opt/alt/python35/lib64/python3.5/site-packages/numpy/distutils/lib2def.py�	parse_cmd)s"::




r�nmz-Cszpython%s.libcCsDtj|dddtjdd�}|jj�}|jj�|S)zVReturns the output of nm_cmd via a pipe.

nm_output = getnam(nm_cmd = 'nm -Cs py_lib')�shellT�stdout�universal_newlines)�
subprocess�Popen�PIPEr�read�close)�nm_cmd�f�	nm_outputrrr�getnmAs$
r cCs
tj|�}tj|�}g}xi|D]a}||kr+|dd�dks|dd�dks|dd�dkr+|j|�q+Wg}xS|D]K}||kr�|dd�dks�|dd�dkr�|j|�q�W|j�|j�||fS)z�Returns a tuple of lists: dlist for the list of data
symbols and flist for the list of function symbols.

dlist, flist = parse_nm(nm_output)NrZPyrZ_Pyr�init)�DATA_RE�findall�FUNC_RE�append�sort)r�data�func�flist�sym�dlistrrr�parse_nmJs
N
8

r,cCsYx|D]}|d|}qW|d}x|D]}|d|}q0W|j|�dS)zoOutputs the final DEF file to a file defaulting to stdout.

output_def(dlist, flist, header, file = sys.stdout)z		%s DATA
�
z	%s
N)�write)r+r)�header�fileZdata_symZfunc_symrrr�
output_def`s


r1�__main__�w)!�
__future__rrr�rer�osr�__doc__�__version__�tuple�version_infor�
DEFAULT_NM�
DEF_HEADER�compile�	MULTILINEr$r"rr r,rr1�__name__rr�open�strrrr+r)rrrr�<module>s0