Serhiy Storchaka
0122ae9ac8
Issue #21708 : Deprecated dbm.dumb behavior that differs from common dbm
behavior: creating a database in 'r' and 'w' modes and modifying a database
in 'r' mode.
10 years ago
Berker Peksag
e75ffa965b
Add versionadded to PyDict_SetDefault documentation
It was added for Python 3.4 in a0b750ea3397.
10 years ago
Serhiy Storchaka
7e160ce356
Issue #23034 : The output of a special Python build with defined COUNT_ALLOCS,
SHOW_ALLOC_COUNT or SHOW_TRACK_COUNT macros is now off by default. It can
be re-enabled using the "-X showalloccount" option. It now outputs to stderr
instead of stdout.
10 years ago
Berker Peksag
8faca61fec
Issue #27431 : Update default protocol version in shelve.Shelf() documentation
shelve.open() documentation was updated in f351fb7ea179.
10 years ago
Berker Peksag
e39682b076
Issue #27430 : Fix typos, patch by scop.
10 years ago
Berker Peksag
e807e892ed
Fix typo in whatsnew/3.6.rst
10 years ago
Serhiy Storchaka
15287f8bcc
Issue #4945 : Improved the documenting of boolean arguments in the json module.
Based on patch by Gabriel Genellina.
10 years ago
Victor Stinner
0ab67dfb7c
Issue #27416 : clarify copy doc
Patch written by R. David Murray.
10 years ago
Martin Panter
34eeed4290
Issue #26721 : Change StreamRequestHandler.wfile to BufferedIOBase
10 years ago
Guido van Rossum
457509826e
Fix issue #27402 : example for typing did not type-check.
10 years ago
Berker Peksag
6803f35acc
Issue #27393 : Fix escaping of C:\ too
10 years ago
Berker Peksag
9c1e9d453c
Issue #27393 : Fix escaping of venv activate commands on Windows
Patch by Manuel Kaufmann.
10 years ago
Serhiy Storchaka
8122174af1
Issue #22115 : Added methods trace_add, trace_remove and trace_info in the
tkinter.Variable class. They replace old methods trace_variable, trace,
trace_vdelete and trace_vinfo that use obsolete Tcl commands and might
not work in future versions of Tcl.
10 years ago
Serhiy Storchaka
2d8f94532b
Issue #26243 : Correct a wording in docs.
Thanks Berker.
10 years ago
Serhiy Storchaka
95657cdd40
Issue #26243 : Only the level argument to zlib.compress() is keyword argument
now. The first argument is positional-only.
10 years ago
Brett Cannon
696c35e86b
Issue #26186 : Remove the restriction that built-in and extension
modules can't be lazily loaded.
Thanks to Python 3.6 allowing for types.ModuleType to have its
__class__ mutated, the restriction can be lifted by calling
create_module() on the wrapped loader.
10 years ago
Brett Cannon
a32c4d0531
Issue #27038 : Expose DirEntry as os.DirEntry.
Thanks to Jelle Zijlstra for the code portion of the patch.
10 years ago
Brett Cannon
559ad5d401
Remove a stale reference to pathlib.PurePath.path
10 years ago
Brett Cannon
c28592bb2f
Issue #27186 : Define what a "path-like object" is.
Thanks to Dusty Phillips for the initial patch.
10 years ago
Brett Cannon
c78ca1e044
Issue #27186 : Update os.fspath()/PyOS_FSPath() to check the return
type of __fspath__().
As part of this change, also make sure that the pure Python
implementation of os.fspath() is tested.
10 years ago
Berker Peksag
a064382925
Issue #27381 : Remove superfluous paren in zipfile documentation
10 years ago
Berker Peksag
37e87e6ec1
Issue #26547 : Remove outdated term dictproxy from vars() documentation
dictproxy was used in Python 2 and it was renamed to mappingproxy
in Python 3.3.
Patch by Julien.
10 years ago
Berker Peksag
79af27ef2e
Issue #27378 : Remove an outdated reference from regex HOWTO
Patch by Matt Morrison.
10 years ago
Terry Jan Reedy
dcb6c88a24
Issue #27304 : Source code links for sub-packages in the same file.
Patch by Yoni Lavi
10 years ago
Benjamin Peterson
909acb8c63
alter header; '%' really throws latex through a loop
10 years ago
Benjamin Peterson
8550bd80ae
alter header; '%' really throws latex through a loop
10 years ago
Serhiy Storchaka
aacd53f6cb
Issue #18726 : All optional parameters of the dump(), dumps(),
load() and loads() functions and JSONEncoder and JSONDecoder class
constructors in the json module are now keyword-only.
10 years ago
Martin Panter
df1d31c2cd
Fix “allow(s) to”
10 years ago
Martin Panter
2275e626b1
Fix spelling errors in code comments
10 years ago
Serhiy Storchaka
514f9736a7
Issue #27294 : Numerical state in the repr for Tkinter event objects is now
represented as a compination of known flags.
10 years ago
Senthil Kumaran
d37de3c41d
issue27021 - Document SC_IOV_MAX limitation imposed by OS on os.writev.
Patch contributed Марк Коренберг.
10 years ago
Martin Panter
bae5d81f5d
Issue #24314 : Fix doc links for general attributes like __name__, __dict__
10 years ago
Steve Dower
ea93ac013d
Issue #26536 : socket.ioctl now supports SIO_LOOPBACK_FAST_PATH. Patch by Daniel Stokes.
10 years ago
Ned Deily
dccc5edfa1
Issue #27327 : fix doc typo, noted by Jakub Wilk.
10 years ago
Berker Peksag
33e7ca78f9
Make faq/general.rst gender-inclusive, patch by Sam Hathaway.
10 years ago
Georg Brandl
4b9e75ba7f
Docs: add html-stable autobuild variant
10 years ago
Martin Panter
71e86367e0
Issue #27311 : Fix ZipFile.writestr data argument name.
Patch by John Hagen.
10 years ago
Berker Peksag
e0b70cd8a9
Issue #16864 : Cursor.lastrowid now supports REPLACE statement
Initial patch by Alex LordThorsen.
10 years ago
Berker Peksag
48b13f0427
Delete outdated paragraph about OptimizedUnicode again
sqlite3.OptimizedUnicode is an alias for str in Python 3 and
its behavior is already tested in CheckOptimizedUnicode in
Lib/sqlite3/test/factory.py.
sqlite3.OptimizedUnicode was undocumented in 0fc10a33eb4c and
probably added back with the result of a bad merge.
10 years ago
Martin Panter
6afbc653a7
Issue #16182 : set_pre_input_hook() may not exist; document, and update test
10 years ago
Berker Peksag
9748478086
Issue #27306 : Fix typo in tarfile documentation
Patch by Gareth Rees.
10 years ago
Terry Jan Reedy
dffd42f130
Whitespace
10 years ago
Terry Jan Reedy
d9792a0f18
Issue #27163 : Add idlelib/IDLE entry to What's New in 3.6.
10 years ago
Serhiy Storchaka
64204de04c
Issue #27095 : Simplified MAKE_FUNCTION and removed MAKE_CLOSURE opcodes.
Patch by Demur Rumed.
10 years ago
Berker Peksag
8f95e65e5d
Issue #15657 : Delete incorrect statement from PyMethodDef documentation
10 years ago
Berker Peksag
c415440faa
Issue #27188 : Fix various sqlite3 documentation errors
* Connection.execute* methods don't create intermediate cursor objects
* Fix description of seq_of_parameters parameter
* Clarify that Warning is sqlite3.Warning
* sql_script parameter of Cursor.executescript() doesn't accept bytes
* Add missing tests
* Fix various markup errors
Initial patch by Dave Sawyer.
10 years ago
Berker Peksag
00eaa8a53b
Use exc role for ValueError in multiprocessing.rst
10 years ago
Berker Peksag
0b19e1e72c
Issue #27221 : Delete an outdated paragraph about pickle support of Process
Initial patch by Jelle Zijlstra.
10 years ago
Martin Panter
98e9051577
Add grammatical article to “an ASCII letter”
10 years ago
Martin Panter
70c502aacf
Fix typos and English grammar in documentation and code comment
10 years ago