Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Delta Between Two Patch Sets: runserver.spec

Issue 29352640: Issue 4410 - Update runserver.spec for new pyinstaller versions (Closed) Base URL: https://hg.adblockplus.org/cms/
Left Patch Set: Created Sept. 12, 2016, 10:44 a.m.
Right Patch Set: Removed unnecessary comments Created Sept. 14, 2016, 7:11 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « no previous file | no next file » | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 # PyInstaller spec, run "pyinstaller runserver.spec" from repository root to bui ld 1 # PyInstaller spec, run "pyinstaller runserver.spec" from repository root to bui ld
2
3 # Hidden imports are supposed to be analyzed recursively. However, due to
Vasily Kuznetsov 2016/09/13 16:29:37 So should we maybe also remove this comment now th
Wladimir Palant 2016/09/14 07:12:26 You are right, I overlooked that comment. Removed
4 # a bug in PyInstaller imports from inside hidden modules aren't considered.
5 # https://github.com/pyinstaller/pyinstaller/issues/1086
6
7 2
8 a = Analysis( 3 a = Analysis(
9 ['cms/bin/test_server.py'], 4 ['cms/bin/test_server.py'],
10 pathex=['.'], 5 pathex=['.'],
11 hiddenimports=[ 6 hiddenimports=[
12 'markdown.extensions.extra', 7 'markdown.extensions.extra',
13 'markdown.extensions.smart_strong', 8 'markdown.extensions.smart_strong',
14 'markdown.extensions.fenced_code', 9 'markdown.extensions.fenced_code',
15 'markdown.extensions.footnotes', 10 'markdown.extensions.footnotes',
16 'markdown.extensions.attr_list', 11 'markdown.extensions.attr_list',
(...skipping 23 matching lines...) Expand all
40 a.scripts, 35 a.scripts,
41 a.binaries, 36 a.binaries,
42 a.zipfiles, 37 a.zipfiles,
43 a.datas, 38 a.datas,
44 name='runserver', 39 name='runserver',
45 debug=False, 40 debug=False,
46 strip=None, 41 strip=None,
47 upx=False, 42 upx=False,
48 console=True 43 console=True
49 ) 44 )
LEFTRIGHT
« no previous file | no next file » | Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Toggle Comments ('s')

Powered by Google App Engine
This is Rietveld