summaryrefslogtreecommitdiffstats
path: root/Doc/library/compileall.rst
Commit message (Collapse)AuthorAgeFilesLines
* Issue #28226: compileall now supports pathlibBerker Peksag2016-09-301-0/+6
|
* Merge Issue #22558.Terry Jan Reedy2016-06-111-1/+0
|\
| * Issue #22558: Add remaining doc links to source code for Python-coded modules.Terry Jan Reedy2016-06-111-1/+0
| | | | | | | | | | Reformat header above separator line (added if missing) to a common format. Patch by Yoni Lavi.
* | Issue #25768: Make compileall functions return booleans and documentBrett Cannon2015-12-271-4/+8
|/ | | | | | the return values as well as test them. Thanks to Nicholas Chammas for the bug report and initial patch.
* Fixed a typo in the -b option.Serhiy Storchaka2015-09-131-1/+1
|
* docs.compileall: Fix markup (rendering was off, noticed by Berker Peksag)Yury Selivanov2015-09-091-6/+3
|
* whatsnew/3.5: Fix library news till Py3.5a1. Update other docs.Yury Selivanov2015-09-091-7/+5
|
* Issue #23917: Fall back to sequential compilation when ProcessPoolExecutor ↵Berker Peksag2015-04-221-2/+2
| | | | | | doesn't exist. Patch by Claudiu Popa.
* Issue #23731: Implement PEP 488.Brett Cannon2015-04-131-0/+16
| | | | | | The concept of .pyo files no longer exists. Now .pyc files have an optional `opt-` tag which specifies if any extra optimizations beyond the peepholer were applied.
* Issue #21338: Add silent mode for compileall.Berker Peksag2014-10-151-8/+20
| | | | | | | | | quiet parameters of compile_{dir, file, path} functions now have a multilevel value. Also, -q option of the CLI now have a multilevel value. Patch by Thomas Kluyver.
* merge with 3.4Georg Brandl2014-10-021-0/+4
|\
| * closes #22528: add source links to symtable and compileallGeorg Brandl2014-10-021-0/+4
| |
* | Issue #16104: Allow compileall to do parallel bytecode compilation.Brett Cannon2014-09-121-2/+17
| | | | | | | | | | | | | | Both compileall.compile_dir() and the CLI for compileall now allow for specifying how many workers to use (or 0 to use all CPUs). Thanks to Claudiu Popa for the patch.
* | allow recursion depth to be specified (closes #19628)Benjamin Peterson2014-08-191-0/+11
|/ | | | Patch from Claudiu Popa.
* Fix option description that is a warning in new Sphinx versions.Georg Brandl2014-03-181-1/+2
|
* Fix example ignoring ".svn" directories in compileall.Georg Brandl2013-04-141-1/+1
|
* #10553: Explain why compileall has no command-line argument to control ↵Éric Araujo2011-03-261-0/+3
| | | | optimization
* Fix argument name typo in compileall docs.R. David Murray2011-02-111-1/+1
|
* #10454: clarify the compileall docs and help messages.R. David Murray2010-12-171-32/+63
|
* Add missing docs and directives related to PEP 3147 and byte-compilationÉric Araujo2010-12-161-4/+26
|
* Add versionadded directive missing from r78983.Éric Araujo2010-12-161-0/+3
|
* Add an "optimize" parameter to compile() to control the optimization level, ↵Georg Brandl2010-12-041-5/+14
| | | | and provide an interface to it in py_compile, compileall and PyZipFile.
* Fix usage of :option: in the docs (#9312).Éric Araujo2010-11-181-11/+47
| | | | | | | | | | | | | | | | | :option: is used to create a link to an option of python, not to mark up any instance of any arbitrary command-line option. These were changed to ````. For modules which do have a command-line interface, lists of options have been properly marked up with the program/cmdoption directives combo. Options defined in such blocks can be linked to with :option: later in the same file, they won’t link to an option of python. Finally, the markup of command-line fragments in optparse.rst has been cleaned to use ``x`` instead of ``"x"``, keeping that latter form for actual Python strings. Patch by Eli Bendersky and Éric Araujo.
* PEP 3147Barry Warsaw2010-04-171-3/+9
|
* Remove surplus empty lines and convert more files to new optional arg style.Georg Brandl2009-05-171-1/+0
|
* Update signature style for optional arguments, part 3.Georg Brandl2009-04-101-2/+2
|
* Merged revisions 66457-66459,66465-66468,66483-66485,66487-66491 via ↵Benjamin Peterson2008-09-171-2/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r66457 | antoine.pitrou | 2008-09-13 15:30:30 -0500 (Sat, 13 Sep 2008) | 5 lines Issue #3850: Misc/find_recursionlimit.py was broken. Reviewed by A.M. Kuchling. ........ r66458 | benjamin.peterson | 2008-09-13 17:54:43 -0500 (Sat, 13 Sep 2008) | 1 line fix a name issue; note all doc files should be encoded in utf8 ........ r66459 | benjamin.peterson | 2008-09-14 11:02:22 -0500 (Sun, 14 Sep 2008) | 1 line clarify that radix for int is not 'guessed' ........ r66465 | skip.montanaro | 2008-09-14 21:03:05 -0500 (Sun, 14 Sep 2008) | 3 lines Review usage. Fix a mistake in the new-style class definition. Add a couple new definitions (CPython and virtual machine). ........ r66466 | skip.montanaro | 2008-09-14 21:19:53 -0500 (Sun, 14 Sep 2008) | 2 lines Pick up a few more definitions from the glossary on the wiki. ........ r66467 | benjamin.peterson | 2008-09-14 21:53:23 -0500 (Sun, 14 Sep 2008) | 1 line mention that object.__init__ no longer takes arbitrary args and kwargs ........ r66468 | andrew.kuchling | 2008-09-15 08:08:32 -0500 (Mon, 15 Sep 2008) | 1 line Rewrite item a bit ........ r66483 | georg.brandl | 2008-09-16 05:17:45 -0500 (Tue, 16 Sep 2008) | 2 lines Fix typo. ........ r66484 | benjamin.peterson | 2008-09-16 16:20:28 -0500 (Tue, 16 Sep 2008) | 2 lines be less wordy ........ r66485 | georg.brandl | 2008-09-17 03:45:54 -0500 (Wed, 17 Sep 2008) | 2 lines #3888: add some deprecated modules in whatsnew. ........ r66487 | skip.montanaro | 2008-09-17 06:50:36 -0500 (Wed, 17 Sep 2008) | 2 lines usage ........ r66488 | andrew.kuchling | 2008-09-17 07:57:04 -0500 (Wed, 17 Sep 2008) | 1 line Markup fixes ........ r66489 | andrew.kuchling | 2008-09-17 07:58:22 -0500 (Wed, 17 Sep 2008) | 2 lines Remove comment about improvement: pystone is about the same, and the improvements seem to be difficult to quantify ........ r66490 | andrew.kuchling | 2008-09-17 08:04:53 -0500 (Wed, 17 Sep 2008) | 1 line Note sqlite3 version; move item ........ r66491 | benjamin.peterson | 2008-09-17 16:54:56 -0500 (Wed, 17 Sep 2008) | 1 line document compileall command flags ........
* Move the 3k reST doc tree in place.Georg Brandl2007-08-151-0/+57