xref: /freebsd-12.1/contrib/file/magic/Magdir/python (revision 3e41d09d)
1b6cee71dSXin LI
2b6cee71dSXin LI#------------------------------------------------------------------------------
3*3e41d09dSXin LI# $File: python,v 1.28 2015/09/16 22:19:54 christos Exp $
4b6cee71dSXin LI# python:  file(1) magic for python
5b6cee71dSXin LI#
6b6cee71dSXin LI# Outlook puts """ too for urgent messages
7b6cee71dSXin LI# From: David Necas <[email protected]>
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)
12b6cee71dSXin LI# 20121  ( YEAR - 1995 ) + MONTH  + DAY (little endian followed by "\r\n"
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
27b6cee71dSXin LI
28b6cee71dSXin LI0	search/1/w	#!\ /usr/bin/python	Python script text executable
29*3e41d09dSXin LI!:strength + 15
30b6cee71dSXin LI!:mime text/x-python
31b6cee71dSXin LI0	search/1/w	#!\ /usr/local/bin/python	Python script text executable
32*3e41d09dSXin LI!:strength + 15
33b6cee71dSXin LI!:mime text/x-python
34b6cee71dSXin LI0	search/1	#!/usr/bin/env\ python	Python script text executable
35*3e41d09dSXin LI!:strength + 15
36b6cee71dSXin LI!:mime text/x-python
379ce06829SXin LI0	search/10	#!\ /usr/bin/env\ python	Python script text executable
38*3e41d09dSXin LI!:strength + 15
39b6cee71dSXin LI!:mime text/x-python
40b6cee71dSXin LI
41b6cee71dSXin LI
42b6cee71dSXin LI# from module.submodule import func1, func2
43b6cee71dSXin LI0	regex	\^from\\s+(\\w|\\.)+\\s+import.*$	Python script text executable
44b6cee71dSXin LI!:mime text/x-python
45b6cee71dSXin LI
46b6cee71dSXin LI# def __init__ (self, ...):
47b6cee71dSXin LI0	search/4096	def\ __init__
48b6cee71dSXin LI>&0	search/64 self	Python script text executable
49b6cee71dSXin LI!:mime text/x-python
50b6cee71dSXin LI
51b6cee71dSXin LI# comments
52b6cee71dSXin LI#0	search/4096	'''
53b6cee71dSXin LI#>&0	regex	.*'''$	Python script text executable
54b6cee71dSXin LI#!:mime text/x-python
55b6cee71dSXin LI
56b6cee71dSXin LI#0	search/4096	"""
57b6cee71dSXin LI#>&0	regex	.*"""$	Python script text executable
58b6cee71dSXin LI#!:mime text/x-python
59b6cee71dSXin LI
60b6cee71dSXin LI# try:
61b6cee71dSXin LI# except: or finally:
62b6cee71dSXin LI# block
63b6cee71dSXin LI0	search/4096	try:
64b6cee71dSXin LI>&0	regex	\^\\s*except.*:	Python script text executable
65b6cee71dSXin LI!:mime text/x-python
66b6cee71dSXin LI>&0	search/4096	finally:	Python script text executable
67b6cee71dSXin LI!:mime text/x-python
68b6cee71dSXin LI
69b6cee71dSXin LI# def name(args, args):
70b6cee71dSXin LI0	regex	 \^(\ |\\t){0,50}def\ {1,50}[a-zA-Z]{1,100}
71b6cee71dSXin LI>&0	regex	\ {0,50}\\(([a-zA-Z]|,|\ ){1,255}\\):$ Python script text executable
72b6cee71dSXin LI!:mime text/x-python
73