Raymond Hettinger
b22ba046ae
Fix typo
14 years ago
Raymond Hettinger
b2269baca3
Clean-up example
14 years ago
Raymond Hettinger
2a61c451f2
cm.parents is property, not a method
14 years ago
Larry Hastings
950b76ab1a
Doc fix: the text role is called "func", not "funk".
14 years ago
Larry Hastings
7aa2c8baae
Issue #15202 : Additional documentation fixes inadvertently omitted
from previous checkin.
14 years ago
Larry Hastings
b40380667c
Issue #15202 : Consistently use the name "follow_symlinks" for
new parameters in os and shutil functions. Patch by Serhiy Storchaka.
14 years ago
Nick Coghlan
6061000d01
Update the pkgutil porting section in What's New. This should cause significantly fewer problems after today's updates
14 years ago
Nick Coghlan
8ecf50474c
Issue #15343 : Handle importlib.machinery.FileFinder instances in pkgutil.walk_packages (et al)
14 years ago
Nick Coghlan
85e729ec3b
Take the first step in resolving the messy pkgutil vs importlib edge cases by basing pkgutil explicitly on importlib, deprecating its internal import emulation and setting __main__.__loader__ correctly so that runpy still works (Affects #15343 , #15314 , #15357 )
14 years ago
Eli Bendersky
f96cf911a0
Issue #9458 : clarify the documentation of ElementTree.write with regards to the type of the stream expected for a given encoding
14 years ago
Eli Bendersky
00f402bfcb
Close #1767933 : Badly formed XML using etree and utf-16. Patch by Serhiy Storchaka, with some minor fixes by me
14 years ago
Larry Hastings
1191709b13
- Issue #15233 : Python now guarantees that callables registered with
the atexit module will be called in a deterministic order.
14 years ago
Larry Hastings
ad5ae0456e
- Issue #15238 : shutil.copystat now copies Linux "extended attributes".
14 years ago
Brett Cannon
15810673dc
Minor grammatical tweaks.
14 years ago
Eli Bendersky
f877a7cce1
Some small fixes and clarifications to the io documentation
14 years ago
Nick Coghlan
a3d1cac4b2
Issue #15230 : Update runpy docs to clarify a couple of points that came up in this issue
14 years ago
Brett Cannon
a6473f9cfd
Issues #15169 , #14599 : Make PyImport_ExecCodeModuleWithPathnames() use
Lib/imp.py for imp.source_from_cache() instead of its own C version.
Also change PyImport_ExecCodeModuleObject() to not infer the source
path from the bytecode path like
PyImport_ExecCodeModuleWithPathnames() does. This makes the function
less magical.
This also has the side-effect of removing all uses of MAXPATHLEN in
Python/import.c which can cause failures on really long filenames.
14 years ago
Brett Cannon
d104eef118
Issue #15053 : Make sure all functions related to the import lock have
the Python 3.3 change notice on them in case someone directly links to
the function(s).
14 years ago
Antoine Pitrou
52cc722ab8
Add c_size_t and c_ssize_t to the ctypes summary table.
14 years ago
Raymond Hettinger
921d1244c6
Show the proper way to exit a cmd shell
14 years ago
Eli Bendersky
78da3bc0af
Additional fixes to multiprocessing docs (for issue #13686 )
14 years ago
Eli Bendersky
8a80502d2c
Issue #15296 : Fix minidom.toxml/toprettyxml for non-unicode encodings. Patch by Serhiy Storchaka, with some minor style adjustments by me.
14 years ago
Eli Bendersky
b674dcf53e
Some fixes for the documentation of multiprocessing (per issue #13686 )
14 years ago
Eli Bendersky
e08824c300
Remove :noindex: for threading.Thread which killed all reference links to it
14 years ago
Vinay Sajip
c4618e33b2
Factored out common venv documentation and added more information about Distribute/pip.
14 years ago
Brett Cannon
77b2abd094
Issue #15167 (as part of #13959 ): imp.get_magic() is no implemented in
Lib/imp.py.
14 years ago
Raymond Hettinger
f07d949367
Fix markup
14 years ago
Brett Cannon
5c453ce3a4
Use the proper term.
14 years ago
Brett Cannon
3adc7b75a5
Issue #15242 : Have PyImport_GetMagicTag() return a const char *
defined in sysmodule.c instead of straight out of a Unicode object.
Thanks to Amaury Forgeot d'Arc for noticing the bug and Eric Snow for
writing the patch.
14 years ago
Brett Cannon
903c27c177
Add a note about pkgutil and how some things do not work in the face of PEP 302 permeating throughout import.
14 years ago
Brett Cannon
b19449751f
Issue #15288 : Clarify that pkgutil.walk_packages() and friends will no
longer work as expected in Python 3.3 as importlib's loaders do not
implement the non-standard iter_modules() method. Also link to the
term "loader" in the requisite notes to help make it clearer what has
happened.
14 years ago
Brett Cannon
19a2f5961c
Issue #15056 : imp.cache_from_source() and source_from_cache() raise
NotimplementedError when sys.implementation.cache_tag is None.
Thanks to Pranav Ravichandran for taking an initial stab at the patch.
14 years ago
Vinay Sajip
cd9b746b37
Added cross-references to venv definition.
14 years ago
Vinay Sajip
a945ad1a12
Issue #15283 : Updated pyvenv documentation to expand on activation.
14 years ago
Raymond Hettinger
9ae9473389
Make it easier to search for the grouper() recipe.
14 years ago
Raymond Hettinger
86a20f834a
Issue 15265: document the exception raised for invalid sample sizes.
14 years ago
Terry Jan Reedy
83efd6cbb6
Issue #13557 : Clarify effect of giving two different namespaces to exec or
execfile().
14 years ago
Senthil Kumaran
ac3f4f3133
Fix markup for versionchanged sphinx directive.
14 years ago
Senthil Kumaran
a5e0eaf2e1
Fix 5931 - Python runtime hardcoded in wsgiref.simple_server - Now it specifies an implementation specific term.
14 years ago
Antoine Pitrou
d94adb7367
Add a blurb about PEP 412
14 years ago
Florent Xicluna
109d57358e
Issue #13248 : io: Remove obsolete argument "max_buffer_size" of BufferedWriter and BufferedRWPair.
14 years ago
Nick Coghlan
ccd712a8d1
Issue 14814: Further clean ups to the ipaddress tutorial
14 years ago
Nick Coghlan
b582ecc562
Issue 14814: Explain how to get more error detail in the ipaddress tutorial, and tweak the display for octet errors in IPv4 (noticed the formatting problem when adding to the docs)
14 years ago
Richard Oudkerk
2240ac1eae
Issue #15261 : Stop os.stat(fd) crashing on Windows when fd not open.
14 years ago
Vinay Sajip
3575f910d9
Closes #15241 : Added information on venv prefixes to pyvenv section.
14 years ago
Vinay Sajip
abd344cbab
Issue 15241: Improved site.py documentation relating to venvs.
14 years ago
Brett Cannon
1e331560ee
Closes #15030 : Make importlib.abc.PyPycLoader respect the new .pyc
file size header field.
Thanks to Marc Abramowitz and Ronan Lamy for helping out with various
parts of the patch.
14 years ago
Georg Brandl
29feb1ffca
Make call of os.getppid() conditional: it is not available on Windows.
14 years ago
Georg Brandl
3aa0c9dcf3
Fix inconsistent function name in embedding howto.
14 years ago
Senthil Kumaran
4a27d9fb46
urlparse docs clean up - no reference to earlier draft
14 years ago