cocoatomo
f8beb9831a
bpo-29888: Fix the link referring to the "Python download page" (GH-824)
9 years ago
Serhiy Storchaka
4aec9a8be2
bpo-29901: Improve support of path-like objects in zipapp. ( #815 )
Now general path-like objects are supported, not just pathlib.Path.
9 years ago
NAKAMURA Osamu
29540cdf6c
bpo-29892: Fix wrong markup on doc-lib-functions (GH-802)
9 years ago
Ivan Levkivskyi
8f9e1bbf2d
bpo-28810: Document remaining bytecode changes in 3.6 (GH-651)
9 years ago
Serhiy Storchaka
e304e33c16
bpo-19930: The mode argument of os.makedirs() no longer affects the file ( #799 )
permission bits of newly-created intermediate-level directories.
9 years ago
Sylvain Bellemare
5619ab2db3
doc: Fix small typos in library/multiprocessing (GH-698)
9 years ago
Serhiy Storchaka
aefa7ebf0f
bpo-6532: Make the thread id an unsigned integer. ( #781 )
* bpo-6532: Make the thread id an unsigned integer.
From C API side the type of results of PyThread_start_new_thread() and
PyThread_get_thread_ident(), the id parameter of
PyThreadState_SetAsyncExc(), and the thread_id field of PyThreadState
changed from "long" to "unsigned long".
* Restore a check in thread_get_ident().
9 years ago
Nathaniel J. Smith
1e2147b9d7
bpo-29728: Provide socket.TCP_NOTSENT_LOWAT ( #477 )
* Provide socket.TCP_NOTSENT_LOWAT
* New TCP option available on recent MacOS and Linux.
* Document addition of TCP_NOTSENT_LOWAT
9 years ago
Ivan Levkivskyi
fad7f15606
Remove an outdated statement in execution model docs (GH-754)
9 years ago
INADA Naoki
bd3d8ba3b2
doc: minor fix for library/profile (GH-761)
9 years ago
Jelle Zijlstra
75b6cf879f
fix function name in tabnanny documentation (GH-759)
9 years ago
zertrin
05f53735c8
Fix "NotImplentedError" typo in constants documentation ( #692 )
`NotImplentedError` --> `NotImplementedError`
9 years ago
Mariatta
64508780d7
bpo-29856: Fix typo in curses documentation (GH-730)
From Shifted Dxit -> Shifted Exit in Doc/library/curses.rst
9 years ago
Serhiy Storchaka
c85a26628c
bpo-28749: Fixed the documentation of the mapping codec APIs. ( #487 )
Added the documentation for PyUnicode_Translate().
9 years ago
Marco Buttu
909a6f626f
bpo-27200: Fix doctests in programming.rst and datetime.rst ( #401 )
9 years ago
Marco Buttu
3f2155ffe6
bpo-16355: Clarify when inspect.getcomments() returns None ( #428 )
Initial patch by Vajrasky Kok.
9 years ago
Marco Buttu
1bb0f3762e
bpo-29820: othergui.rst: Remove outdated information (GH-685)
9 years ago
Jelle Zijlstra
9e52c907b5
ftplib.FTP.retrbinary callback gets a bytes, not a str (GH-652)
9 years ago
Jelle Zijlstra
7bb6ac76b2
fix the name of argument to ftplib.FTP.set_pasv and fix wording (GH-653)
9 years ago
Xiang Zhang
b2d77175d1
bpo-29756: Improve documentation for list methods that compare items by equality (GH-572)
9 years ago
Serhiy Storchaka
f6595983e0
bpo-28692: Deprecate using non-integer value for selecting a plural form in gettext. ( #507 )
9 years ago
Serhiy Storchaka
c611a5b1d4
bpo-29746: Update marshal docs to Python 3. ( #547 )
9 years ago
Serhiy Storchaka
97553fdf9d
bpo-26121: Use C library implementation for math functions: ( #515 )
* bpo-26121: Use C library implementation for math functions:
tgamma(), lgamma(), erf() and erfc().
* Don't use tgamma() and lgamma() from libc on OS X.
9 years ago
Jelle Zijlstra
d3b8f98696
tempfile.rst: Fix some typos (GH-610)
9 years ago
Xiang Zhang
0710d75425
bpo-29770: remove outdated PYO related info (GH-590)
9 years ago
Mariatta
70ee0cd5c2
bpo-29784: Fix the reference to shutil.copy in the docs (GH-602)
9 years ago
Ivan Levkivskyi
4b2a2a425a
bpo-28810: Document changes to CALL_FUNCTION opcodes (GH-250)
9 years ago
Ivan Levkivskyi
7e52c3e7ae
bpo-28810: Document BUILD_TUPLE_UNPACK_WITH_CALL bytecode added in 3.6 (GH-239)
9 years ago
Mariatta
d4e89287b3
bpo-28739: Document that f-strings cannot be used as docstring (GH-592)
9 years ago
Serhiy Storchaka
8606e9524a
bpo-28231: The zipfile module now accepts path-like objects for external paths. ( #511 )
9 years ago
INADA Naoki
c351ce6a2c
bpo-28331: fix impl-detail label is removed when content is translated. (GH-195)
9 years ago
Serhiy Storchaka
c45cd167d4
bpo-28230: Document the pathlib support in tarfile and add tests. ( #512 )
9 years ago
Serhiy Storchaka
8f6b344d36
bpo-28682: Added support for bytes paths in os.fwalk(). ( #489 )
9 years ago
Serhiy Storchaka
2e5642422f
bpo-29695: Remove bad keyword parameters in int(), bool(), float(), list() and tuple(). ( #518 )
9 years ago
INADA Naoki
2225ddaa9e
bpo-29719: Remove Date and Release field in whatsnew/3.6 (GH-494)
9 years ago
Serhiy Storchaka
58d23e6806
bpo-29695: Deprecated using bad named keyword arguments in builtings: ( #486 )
int(), bool(), float(), list() and tuple(). Specify the value as a
positional argument instead.
9 years ago
Adam Niederer
b4e1b92aab
Docs: Add note regarding "reversed" flag in heapq.merge ( #300 )
The docs for `heapq.merge` are a little misleading. Iterables passed
into heapq.merge with the reversed flag enabled must be sorted from
largest to smallest to achieve the desired sorting effect, but the
previous paragraph states that they should be sorted from smallest
to largest.
9 years ago
Mariatta
2a7bddaab7
distutils docs: Fix a typo (GH-470)
instanciated -> instantiated
9 years ago
J. W
6abaed0dda
Correct spelling "instanciate" ( #465 )
9 years ago
Ivan Levkivskyi
0705f66eb3
bpo-26213: Document _UNPACK bytecodes and BUILD_MAP changes ( #238 )
9 years ago
Mariatta
8eb531d9db
bpo-29709: Improve Boolean Operations documentation ( #433 )
Change False into false, and True into true.
9 years ago
Marco Buttu
5dfccb06dc
bpo-29455: Mention coverage.py in trace module documentation ( #261 )
9 years ago
David Ellis
85b8d01c91
bpo-29623: Make PathLike objects work with ConfigParser.read() ( #242 )
9 years ago
Matthias Bussonnier
c643a967dd
Add Python version since deprecation in base64 methods. ( #33 )
Allow developers to not have to either test on N Python versions or
looked through multiple versions of the docs to know whether they can
easily update.
9 years ago
Marco Buttu
b2a7c2f986
bpo-27200: fix configparser, copyreg and ctypes doctests ( #240 )
9 years ago
Alex Gaynor
275104e86b
In SSL module version examples, don't use a legacy version. ( #381 )
9 years ago
Mariatta
da62373b0d
email.compat32-message.rst: Fix typo in the word `message` (GH-379)
9 years ago
Berker Peksag
f5184745a5
Tweak subprocess.STARTUPINFO documentation ( #347 )
* Document STARTUPINFO constructor
* Move versionchanged directive to above of attributes
9 years ago
Alex Gaynor
1cf2a809b1
Fixed a handful of typos (GH-343)
9 years ago
Kartik Anand
626584284e
correct documentation for enum.html ( #358 )
9 years ago