Andrés Delfino
f85af035c5
Fix margin in sentinel and mock_open (GH-8188)
2018-07-08 17:28:51 -07:00
Marcin Niemira
bc9aa813a3
bpo-34061: Document sqlite3.NotSupportedError (GH-8172)
2018-07-08 15:02:58 +03:00
Serhiy Storchaka
25b804a9c2
bpo-31014: Fix the webbrowser module. (GH-7267)
...
webbrowser._synthesize() called webbrowser.register() with
outdated signature.
Co-Authored-By: John Still <john@jmsdvl.com>
2018-07-08 10:22:32 +03:00
Sergey Fedoseev
0830858aee
bpo-34041: Allow creating deterministic functions in Connection.create_function() (GH-8086)
2018-07-08 10:09:20 +03:00
Andrés Delfino
8d41278045
bpo-33888: Use CPython instead of Python in the FAQ (GH-7767)
...
Make the change where discussing the CPython implementation of lists and dicts.
2018-07-07 19:25:47 -04:00
Marcin Niemira
9c5ba09748
closes bpo-34050: Fix link in SSL docs (GH-8173)
2018-07-07 15:24:20 -07:00
Benjamin Peterson
9b50a7f29b
Make PySimpleQueueType static. (GH-8175)
2018-07-07 15:21:15 -07:00
Andrew Kuchling
ced350b195
bpo-28626: rearrange discussion of output formatting to encourage f-strings ( #6036 )
...
The 'output formatting' section of the tutorial talks a lot about manual formatting with things like .rjust() and .zfill(), with only a passing reference to 3.6's new f-strings.
This doesn't drop all of the old material, but it does rearrange the topics into a more modern order: f-strings first, discussing formatting specifiers a bit; then calling .format(); finally manual formatting with .ljust().
2018-07-07 17:36:23 -04:00
Andrés Delfino
caccca78e4
bpo-33702: Add some missing links in production lists and do a little polish (GH-7259)
2018-07-07 23:24:46 +03:00
Andrés Delfino
b6bb77c2b8
bpo-33804: Document that the argument for io.TextIOBase.read() is optional (GH-7510)
2018-07-07 23:17:16 +03:00
Andrés Delfino
2d748389dc
Fix moduleauthor/sectionauthor directives in Enum (GH-8117)
2018-07-07 22:01:25 +03:00
Andrés Delfino
03dd0e794e
Add missing closing parentheses (GH-8144)
2018-07-07 22:00:46 +03:00
Benjamin Peterson
6cfe45a5c3
Make various internal _testbuffer symbols static. (GH-8160)
2018-07-07 11:18:38 -07:00
João D. Ferreira
86bfed372b
Fix typo in TypeVar docstring ( #8142 )
...
"can be used do declare" → "can be used to declare"
2018-07-07 16:41:20 +01:00
Dong-hee Na
2800dcf656
bpo-34065: Improve the markup of logging.basicConfig() arguments (GH-8153)
2018-07-07 15:36:40 +03:00
Benjamin Peterson
4629c0d531
Hide some symbols from _xxsubinterpreters. (GH-8151)
2018-07-06 23:28:35 -07:00
Benjamin Peterson
cb4bae72c9
Make two PyModuleDef_Slot symbols static in _testmultiphase. (GH-8147)
2018-07-06 21:05:51 -07:00
Benjamin Peterson
b0274f2cdd
closes bpo-34056: Always return bytes from _HackedGetData.get_data(). (GH-8130)
...
* Always return bytes from _HackedGetData.get_data().
Ensure the imp.load_source shim always returns bytes by reopening the file in
binary mode if needed. Hash-based pycs have to receive the source code in bytes.
It's tempting to change imp.get_suffixes() to always return 'rb' as a mode, but
that breaks some stdlib tests and likely 3rdparty code, too.
2018-07-06 20:41:06 -07:00
INADA Naoki
e25399b40c
bpo-23493: json: Change sort_keys in Python encoder same to C (GH-8131)
...
Stop using key=lambda. This behavior is same to C version encoder.
2018-07-07 08:55:03 +09:00
Yury Selivanov
0b75228700
bpo-34042: Fix dict.copy() to maintain correct total refcount (GH-8119)
2018-07-06 12:20:07 -04:00
Raymond Hettinger
dc9bc54899
Clarify that example in comment is about fromkeys() (GH-8141)
2018-07-06 08:52:26 -07:00
Victor Stinner
c2368cbc83
bpo-34054: multiprocessing uses time.monotonic() (GH-8118)
...
The multiprocessing module now uses the monotonic clock
time.monotonic() instead of the system clock time.time() to implement
timeouts.
2018-07-06 13:51:52 +02:00
Robert Krzyzanowski
6f19fc6d56
fix two typos in Objects/odictobject.c comments (GH-8040)
2018-07-06 13:54:26 +03:00
Tal Einat
c929df3b96
bpo-20180: complete AC conversion of Objects/stringlib/transmogrify.h (GH-8039)
...
* converted bytes methods: expandtabs, ljust, rjust, center, zfill
* updated char_convertor to properly set the C default value
2018-07-06 13:17:38 +03:00
Julien Palard
7943c5e8b5
Doc: Remove superfluous markup. (GH-8112)
...
The line is speaking of a list of commands, not the list command.
2018-07-06 11:15:13 +02:00
Zackery Spytz
d8c3e820b4
Fix GCC warning in Python/hamt.c (GH-7618)
2018-07-06 17:50:38 +09:00
Ammar Askar
c4ef4896ea
bpo-33899: Make tokenize module mirror end-of-file is end-of-line behavior (GH-7891)
...
Most of the change involves fixing up the test suite, which previously made
the assumption that there wouldn't be a new line if the input didn't end in
one.
Contributed by Ammar Askar.
2018-07-06 10:19:08 +03:00
Benjamin Peterson
3c8aae9ffe
Make TaskStepMethWrapper_Type and TaskWakeupMethWrapper_Type static. (GH-8127)
2018-07-05 22:39:34 -07:00
INADA Naoki
8d130913cb
bpo-34043: Optimize tarfile uncompress performance (GH-8089)
...
tarfile._Stream has two buffer for compressed and uncompressed data.
Those buffers are not aligned so unnecessary bytes slicing happens
for every reading chunks.
This commit bypass compressed buffering.
In this benchmark [1], user time become 250ms from 300ms.
[1]: https://bugs.python.org/msg320763
2018-07-06 14:06:00 +09:00
Sergey Fedoseev
f12028809b
versionadded -> versionchanged for all 'X parameter was added' for uniformity. (GH8114)
...
Per the recommendation in our Developer's Guide:
https://devguide.python.org/documenting/#paragraph-level-markup
2018-07-05 17:01:16 -07:00
Raymond Hettinger
0c4d20bcaa
Add more detail to the Counter.fromkeys() comment block (GH-8124)
2018-07-05 16:36:24 -07:00
Windson yang
3ae2e33a61
classify abs() argument type (GH-8103)
2018-07-05 16:09:53 -07:00
Artjom
e55ca3fdcb
Fix typo in dataclasses documentation (GH-8102)
2018-07-05 19:09:13 -04:00
Victor Stinner
483422f57e
bpo-34044: subprocess.Popen copies startupinfo (GH-8090)
...
subprocess.Popen now copies the startupinfo argument to leave it
unchanged: it will modify the copy, so that the same STARTUPINFO
object can be used multiple times.
Add subprocess.STARTUPINFO.copy() method.
2018-07-05 22:54:17 +02:00
Serhiy Storchaka
09bb918a61
Fix fuzz testing for marshal.loads(). (GH-8106)
2018-07-05 12:19:19 +03:00
Serhiy Storchaka
fc05e68d8f
bpo-33720: Improve tests for the stack overflow in marshal.loads(). (GH-7336)
2018-07-05 11:17:20 +03:00
Sergey Fedoseev
3a9bb5f269
Removed unused import from tzinfo_examples.py. (GH-7994)
2018-07-04 21:47:37 -07:00
Julien Palard
a6e1e41e05
Update Stackless Python wiki URL (GH-8072)
...
It was moved from bitbucket to GitHub.
2018-07-04 21:31:38 -07:00
Raymond Hettinger
e69cd169af
Minor code refactoring. Compute len() one fewer times on one code path. (GH-8094)
2018-07-04 15:28:20 -07:00
Gerrit Holl
bd81cbd584
DOC: In `reduce`, refer to `accumulate` (GH-7930)
2018-07-04 15:26:32 -07:00
Farhaan Bukhsh
5b6e49a139
bpo-30516: Fix documentation issue with -timedelta in datetime (GH-7348)
...
This commit fixes the -timedelta overfllow issue not documented properly.
Signed-off-by: Farhaan Bukhsh <farhaan.bukhsh@gmail.com>
2018-07-04 19:42:05 +01:00
Lorenz Mende
a390cb6b6f
bpo-32942: Fix environment dependent test_script_helper (GH-8034)
...
Result of function interpreter_requires_environment() depends on os.environ.
This was not covered by the tests, leading to fail when PYTHONHOME was set.
2018-07-04 12:10:15 +02:00
Victor Stinner
07888e1cce
bpo-34040, multiprocessing: Fix test_forkserver_sigkill() (GH-8081)
...
Fix test_forkserver_sigkill() of test_multiprocessing_forkserver:
give more time to the first child process to complete, double the
sleep in the parent process.
Reduce also the child process sleep from 1000 ms to 500 ms, to not change
the total duration of the test.
2018-07-04 11:49:41 +02:00
hajoscher
12a08c4760
bpo-34010: Fix tarfile read performance regression (GH-8020)
...
During buffered read, use a list followed by join instead of extending a bytes object.
This is how it was done before but changed in commit b506dc32c1
.
2018-07-04 17:13:18 +09:00
Benjamin Peterson
97ae32c92e
Make GenericAlias_Type and Generic_Type static. (GH-8076)
2018-07-03 22:39:09 -07:00
Benjamin Peterson
b4588c2fff
Don't export pending_threadfunc from _testcapi. (GH-8075)
2018-07-03 22:30:56 -07:00
INADA Naoki
3c452404ae
bpo-33418: Add tp_clear for function object (GH-8058)
...
Without tp_clear, GC can't break cyclic reference.
It will cause memory leak when cyclic reference is
created intentionally.
2018-07-04 11:15:50 +09:00
Zackery Spytz
d8cba5d16f
bpo-24596: Decref module in PyRun_SimpleFileExFlags() on SystemExit (GH-7918)
...
PyErr_Print() will not return when the exception is a SystemExit, so
decref the __main__ module object in that case.
2018-07-03 21:47:22 +02:00
Sergey Fedoseev
831c29721d
bpo-34018: Doc'd that type names of SQLite converters are case-insensitive. (GH-8042)
2018-07-03 14:59:32 +03:00
Bumsik Kim
3cf1f154ed
bpo-34019: Fix wrong arguments for Opera Browser ( #8047 )
...
The Opera Browser was using a outdated command line invocation that resulted in an incorrect URL being opened in the browser when requested using the webbrowser module.
* Correct the arguments passed to the Opera Browser when opening a new URL.
2018-07-03 12:30:06 +01:00