summaryrefslogtreecommitdiffstats
path: root/source4/scripting/python/wscript_build
blob: 9c23a96f8c808de12b9653fcb6e341cc1a610571 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/env python

bld.SAMBA_LIBRARY('samba_python',
	source=[],
	deps='LIBPYTHON pytalloc-util pyrpc_util',
	grouping_library=True,
	private_library=True,
	pyembed=True)

bld.SAMBA_SUBSYSTEM('LIBPYTHON',
	source='modules.c',
	public_deps='',
	init_function_sentinel='{NULL,NULL}',
	deps='talloc',
	pyext=True,
	)


bld.SAMBA_PYTHON('python_uuid',
	source='uuidmodule.c',
	deps='ndr',
	realname='uuid.so',
	enabled = float(bld.env.PYTHON_VERSION) <= 2.4
	)


bld.SAMBA_PYTHON('python_glue',
	source='pyglue.c',
	deps='pyparam_util samba-util netif pytalloc-util',
	realname='samba/_glue.so'
	)


# install out various python scripts for use by make test
bld.SAMBA_SCRIPT('samba_python',
                 pattern='samba/**/*.py',
                 installdir='python')

bld.INSTALL_WILDCARD('${PYTHONARCHDIR}', 'samba/**/*.py', flat=False)
ry_bytes = ''.join(struct.pack('B', d) for d in xrange(256)) assert '\x00' in binary_bytes and '\xff' in binary_bytes assert type(binary_bytes) is str and len(binary_bytes) == 256 # A UTF-8 encoded str: utf8_bytes = '\xd0\x9f\xd0\xb0\xd0\xb2\xd0\xb5\xd0\xbb' # The same UTF-8 data decoded (a unicode instance): unicode_str = u'\u041f\u0430\u0432\u0435\u043b' assert utf8_bytes.decode('UTF-8') == unicode_str assert unicode_str.encode('UTF-8') == utf8_bytes