xref: /freebsd/contrib/file/magic/Magdir/python (revision a5d223e641705cbe537d23e5c023395a929ab8da)
1b6cee71dSXin LI
2b6cee71dSXin LI#------------------------------------------------------------------------------
3*a5d223e6SXin LI# $File: python,v 1.29 2016/07/27 09:42:16 rrt Exp $
4b6cee71dSXin LI# python:  file(1) magic for python
5b6cee71dSXin LI#
6b6cee71dSXin LI# Outlook puts """ too for urgent messages
7b6cee71dSXin LI# From: David Necas <yeti@physics.muni.cz>
8b6cee71dSXin LI# often the module starts with a multiline string
9b6cee71dSXin LI0	string/t	"""	Python script text executable
10b6cee71dSXin LI# MAGIC as specified in Python/import.c (1.5 to 2.7a0 and 3.1a0, assuming
11b6cee71dSXin LI# that Py_UnicodeFlag is off for Python 2)
12*a5d223e6SXin LI# two bytes of magic followed by "\r\n" in little endian order
13b6cee71dSXin LI0	belong		0x994e0d0a	python 1.5/1.6 byte-compiled
14b6cee71dSXin LI0	belong		0x87c60d0a	python 2.0 byte-compiled
15b6cee71dSXin LI0	belong		0x2aeb0d0a	python 2.1 byte-compiled
16b6cee71dSXin LI0	belong		0x2ded0d0a	python 2.2 byte-compiled
17b6cee71dSXin LI0	belong		0x3bf20d0a	python 2.3 byte-compiled
18b6cee71dSXin LI0	belong		0x6df20d0a	python 2.4 byte-compiled
19b6cee71dSXin LI0	belong		0xb3f20d0a	python 2.5 byte-compiled
20b6cee71dSXin LI0	belong		0xd1f20d0a	python 2.6 byte-compiled
21b6cee71dSXin LI0	belong		0x03f30d0a	python 2.7 byte-compiled
22b6cee71dSXin LI0	belong		0x3b0c0d0a	python 3.0 byte-compiled
23b6cee71dSXin LI0	belong		0x4f0c0d0a	python 3.1 byte-compiled
24b6cee71dSXin LI0	belong		0x6c0c0d0a	python 3.2 byte-compiled
25b6cee71dSXin LI0	belong		0x9e0c0d0a	python 3.3 byte-compiled
26c2931133SXin LI0	belong		0xee0c0d0a	python 3.4 byte-compiled
27*a5d223e6SXin LI0	belong		0x160d0d0a	python 3.5 byte-compiled
28b6cee71dSXin LI
29b6cee71dSXin LI0	search/1/w	#!\ /usr/bin/python	Python script text executable
303e41d09dSXin LI!:strength + 15
31b6cee71dSXin LI!:mime text/x-python
32b6cee71dSXin LI0	search/1/w	#!\ /usr/local/bin/python	Python script text executable
333e41d09dSXin LI!:strength + 15
34b6cee71dSXin LI!:mime text/x-python
35b6cee71dSXin LI0	search/1	#!/usr/bin/env\ python	Python script text executable
363e41d09dSXin LI!:strength + 15
37b6cee71dSXin LI!:mime text/x-python
389ce06829SXin LI0	search/10	#!\ /usr/bin/env\ python	Python script text executable
393e41d09dSXin LI!:strength + 15
40b6cee71dSXin LI!:mime text/x-python
41b6cee71dSXin LI
42b6cee71dSXin LI
43b6cee71dSXin LI# from module.submodule import func1, func2
44b6cee71dSXin LI0	regex	\^from\\s+(\\w|\\.)+\\s+import.*$	Python script text executable
45b6cee71dSXin LI!:mime text/x-python
46b6cee71dSXin LI
47b6cee71dSXin LI# def __init__ (self, ...):
48b6cee71dSXin LI0	search/4096	def\ __init__
49b6cee71dSXin LI>&0	search/64 self	Python script text executable
50b6cee71dSXin LI!:mime text/x-python
51b6cee71dSXin LI
52b6cee71dSXin LI# comments
53b6cee71dSXin LI#0	search/4096	'''
54b6cee71dSXin LI#>&0	regex	.*'''$	Python script text executable
55b6cee71dSXin LI#!:mime text/x-python
56b6cee71dSXin LI
57b6cee71dSXin LI#0	search/4096	"""
58b6cee71dSXin LI#>&0	regex	.*"""$	Python script text executable
59b6cee71dSXin LI#!:mime text/x-python
60b6cee71dSXin LI
61b6cee71dSXin LI# try:
62b6cee71dSXin LI# except: or finally:
63b6cee71dSXin LI# block
64b6cee71dSXin LI0	search/4096	try:
65b6cee71dSXin LI>&0	regex	\^\\s*except.*:	Python script text executable
66b6cee71dSXin LI!:mime text/x-python
67b6cee71dSXin LI>&0	search/4096	finally:	Python script text executable
68b6cee71dSXin LI!:mime text/x-python
69b6cee71dSXin LI
70b6cee71dSXin LI# def name(args, args):
71b6cee71dSXin LI0	regex	 \^(\ |\\t){0,50}def\ {1,50}[a-zA-Z]{1,100}
72b6cee71dSXin LI>&0	regex	\ {0,50}\\(([a-zA-Z]|,|\ ){1,255}\\):$ Python script text executable
73b6cee71dSXin LI!:mime text/x-python
74