Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
refs/tags/v3.8.3
/
Lib
/
test
tag
a3a2a67b6eb9c6e0520fa47d766c8cc3a1335ad0
tagger
Łukasz Langa <lukasz@langa.pl>
Wed May 13 17:32:21 2020
object
6f8c8320e9eac9bc7a7f653b43506e75916ce8e8
Python 3.8.3
bce4dda
bpo-40527: Fix command line argument parsing (GH-19955)
by Miss Islington (bot)
· 5 years ago
2a3b876
bpo-40355: Improve error messages in ast.literal_eval with malformed Dict nodes (GH-19868)
by Miss Islington (bot)
· 5 years ago
70fe95c
bpo-40135: Fix multiprocessing test_shared_memory_across_processes() (GH-19892)
by Miss Islington (bot)
· 5 years ago
a629d4c
[3.8] bpo-40398: Fix typing.get_args() for special generic aliases. (GH-19720) (GH-19857)
by Serhiy Storchaka
· 5 years ago
5055c27
[3.8] bpo-39562: Prevent collision of future and compiler flags (GH-19230) (GH-19835)
by Pablo Galindo
· 5 years ago
d9e9049
bpo-40436: Fix code parsing gdb version (GH-19792)
by Miss Islington (bot)
· 5 years ago
3340b2a
bpo-39983: Add test.support.print_warning() (GH-19683) (GH-19687)
by Victor Stinner
· 5 years ago
4a6da0b
bpo-38360: macOS: support alternate form of -isysroot flag (GH-16480)
by Miss Islington (bot)
· 5 years ago
b073509
bpo-40138: Fix Windows os.waitpid() for large exit code (GH-19654)
by Victor Stinner
· 5 years ago
41660ca
bpo-39942:Fix failure in `TypeVar` when missing `__name__` (GH-19616)
by Miss Islington (bot)
· 5 years ago
887ff8e
[3.8] bpo-40330: Fix utf-8 size check in ShareableList (GH-19606) (GH-19625)
by Antoine Pitrou
· 5 years ago
81de3c2
bpo-40260: Revert breaking changes made in modulefinder (GH-19595)
by Miss Islington (bot)
· 5 years ago
bfda4db
[3.8] bpo-40179: Fix translation of #elif in Argument Clinic (GH-19364) (GH-19583)
by Serhiy Storchaka
· 5 years ago
9796fe8
bpo-40287: Fix SpooledTemporaryFile.seek() return value (GH-19540)
by Miss Islington (bot)
· 5 years ago
ccf30e9
bpo-39793: use the same domain on make_msgid tests (GH-18698) (GH-19554)
by Miss Islington (bot)
· 5 years ago
3e72de9
[3.8] bpo-39667: Sync zipp 3.0 (GH-18540) (GH-18701)
by Miss Islington (bot)
· 5 years ago
59047fa
bpo-40260: Update modulefinder to use io.open_code() and respect coding comments (GH-19488)
by Miss Islington (bot)
· 5 years ago
1e1dbdf
bpo-32033: Fix test_pwd failures on Android (GH-19502)
by Miss Islington (bot)
· 5 years ago
67b8a1f
[3.8] Update libregrtest from master (GH-19516)
by Victor Stinner
· 5 years ago
6151148
bpo-31758: Prevent crashes when using an uninitialized _elementtree.XMLParser object (GH-3997) (GH-19485)
by Miss Islington (bot)
· 5 years ago
8bd84e7
bpo-40196: Fix a bug in the symtable when reporting inspecting global variables (GH-19391) (GH-19394)
by Miss Islington (bot)
· 5 years ago
745bd91
bpo-40140: test_builtin.PtyTests registers SIGHUP handler (GH-19314) (GH-19316)
by Victor Stinner
· 5 years ago
ea9e240
bpo-39503: CVE-2020-8492: Fix AbstractBasicAuthHandler (GH-18284) (GH-19296)
by Miss Islington (bot)
· 5 years ago
f971c8c
bpo-40121: Fix exception type in test (GH-19267)
by Miss Islington (bot)
· 5 years ago
6acafee
Handle when IOCTL_VM_SOCKETS_GET_LOCAL_CID does not exist in "socket" (GH-19270)
by Miss Islington (bot)
· 5 years ago
4ced9a7
bpo-40019: Skip test_gdb if Python was optimized (GH-19081)
by Miss Islington (bot)
· 5 years ago
6a0ee60
bpo-40121: Fixes audit event raised on creating a new socket (GH-19238)
by Miss Islington (bot)
· 5 years ago
b05fbe9
bpo-1812: Fix newline conversion when doctest.testfile loads from a package whose loader has a get_data method (GH-17385)
by Miss Islington (bot)
· 5 years ago
c959fa9
bpo-22490: Remove __PYVENV_LAUNCHER__ from environment during launch (GH-9516) (GH-19110)
by Miss Islington (bot)
· 5 years ago
ba26bf3
[3.8] bpo-27807: Skip test_site.test_startup_imports() if pth file (GH-19060) (GH-19090)
by Victor Stinner
· 5 years ago
ec8a973
bpo-39562: Allow executing asynchronous comprehensions in the asyncio REPL (GH-18968)
by Miss Islington (bot)
· 5 years ago
7f5302f
bpo-39360: Ensure all workers exit when finalizing a multiprocessing Pool (GH-19009)
by Miss Islington (bot)
· 5 years ago
f7e32fc
bpo-39965: Correctly raise SyntaxError if await is used outside async functions when PyCF_ALLOW_TOP_LEVEL_AWAIT is set (GH-19010)
by Miss Islington (bot)
· 5 years ago
ff69c9d
bpo-38576: Disallow control characters in hostnames in http.client (GH-18995)
by Miss Islington (bot)
· 5 years ago
e634a8a
[3.8] bpo-39871: Fix possible SystemError in atan2, copysign and remainder (GH-18806) (GH-18989)
by Mark Dickinson
· 5 years ago
f8ce3e2
bpo-39689: Do not test undefined casts to _Bool (GH-18964) (#18966)
by Miss Islington (bot)
· 5 years ago
ab9c729
[3.8] bpo-38643: Raise SystemError instead of crashing when PyNumber_ToBase is called with invalid base. (GH-18863). (GH-18954)
by Serhiy Storchaka
· 5 years ago
cd07b4d
bpo-39520: Fix un-parsing of ext slices with no dimensions (GH-18304)
by Miss Islington (bot)
· 5 years ago
caec8a0
[3.8] bpo-39828: Fix json.tool to catch BrokenPipeError (GH-18779). (GH-18894)
by Dong-hee Na
· 5 years ago
3ede1bc
[3.8] bpo-39850: Add support for abstract sockets in multiprocessing (GH-18866) (GH-18876)
by Pablo Galindo
· 5 years ago
0687bdf
bpo-39517: Allow runpy.run_path() to accept path-like objects (GH-18699)
by Miss Islington (bot)
· 5 years ago
928b4dd
bpo-38894: Fix pathlib.Path.glob in the presence of symlinks and insufficient permissions (GH-18815)
by Miss Islington (bot)
· 5 years ago
92b7278
[3.8] bpo-39889: Fix unparse.py for subscript. (GH-18824). (GH-18826)
by Serhiy Storchaka
· 5 years ago
9ddcb91
[3.8] bpo-39778: Don't traverse weak-reference lists OrderedDict's tp_traverse and tp_clear (GH-18749) (GH-18756)
by Pablo Galindo
· 5 years ago
43932dc
bpo-39764: Make Task.get_stack accept ag_frame (GH-18669)
by Miss Islington (bot)
· 5 years ago
f28b0c7
bpo-38971: Open file in codecs.open() closes if exception raised. (GH-17666)
by Miss Islington (bot)
· 5 years ago
ce720d3
bpo-39769: Fix compileall ddir for subpkgs. (GH-18676) (GH-18718)
by Gregory P. Smith
· 5 years ago
4d70124
[3.8] bpo-39794: Add --without-decimal-contextvar (GH-18702)
by Stefan Krah
· 5 years ago
daef21c
bpo-30566: Fix IndexError when using punycode codec (GH-18632)
by Miss Islington (bot)
· 5 years ago
45cc9ce
Give proper credit for figuring out and writing PEP-3118 tests. (GH-18644) (#18646)
by Miss Islington (bot)
· 5 years ago
b19f7ec
bpo-39681: Fix C pickle regression with minimal file-like objects (GH-18592) (#18630)
by Miss Islington (bot)
· 5 years ago
0c1827e
bpo-39382: Avoid dangling object use in abstract_issubclass() (GH-18530)
by Miss Islington (bot)
· 5 years ago
b627102
bpo-39576: Prevent memory error for overly optimistic precisions (GH-18581) (#18584)
by Miss Islington (bot)
· 5 years ago
e412cbb
[3.8] bpo-39546: argparse: Honor allow_abbrev=False for specified prefix_chars (GH-18337) (GH-18543)
by Miss Islington (bot)
· 6 years ago
f64abd1
[3.8] bpo-39453: Fix contains method of list to hold strong references (GH-18204)
by Dong-hee Na
· 6 years ago
ea316fd
Revert "[3.8] bpo-27657: Fix urlparse() with numeric paths (GH-16839)" (GH-18525)
by Senthil Kumaran
· 6 years ago
8dbdf5f
[3.8] bpo-39606: allow closing async generators that are already closed (GH-18475) (GH-18501)
by Miss Islington (bot)
· 6 years ago
2076d4f
bpo-39474: Fix AST pos for expressions like (a)(b), (a)[b] and (a).b. (GH-18477)
by Miss Islington (bot)
· 6 years ago
efd878c
bpo-39219: Fix SyntaxError attributes in the tokenizer. (GH-17828)
by Miss Islington (bot)
· 6 years ago
ed4d263
bpo-39595: Improve zipfile.Path performance (GH-18406) (GH-18472)
by Miss Islington (bot)
· 6 years ago
d3f9fb2
bpo-39299: Add more tests for mimetypes and its cli. (GH-17949)
by Miss Islington (bot)
· 6 years ago
dc56f5f
bpo-39590: make deque.__contains__ and deque.count hold strong references (GH-18421) (GH-18423)
by Miss Islington (bot)
· 6 years ago
8b9cebc
[3.8] bpo-39579: Fix Attribute end_col_offset to point at the current node (GH-18405) (GH-18408)
by Lysandros Nikolaou
· 6 years ago
0d03a10
bpo-39274: Ensure Fraction.__bool__() returns a bool (GH-18017)
by Miss Islington (bot)
· 6 years ago
30e7693
closes bpo-39510: Fix use-after-free in BufferedReader.readinto() (GH-18295)
by Miss Islington (bot)
· 6 years ago
9a740b6
bpo-37224: Improve test__xxsubinterpreters.DestroyTests (GH-18058)
by Miss Islington (bot)
· 6 years ago
a0389ba
Fixes in sorting descriptions (GH-18317)
by Miss Islington (bot)
· 6 years ago
1723687
[3.8] bpo-39492: Fix a reference cycle between reducer_override and a Pickler instance (GH-18266) (#18316)
by Antoine Pitrou
· 6 years ago
b841633
bpo-39502: Skip test_zipfile.test_add_file_after_2107() on AIX (GH-18282)
by Miss Islington (bot)
· 6 years ago
2b675f0
bpo-39460: Fix test_zipfile.test_add_file_after_2107() (GH-18247)
by Miss Islington (bot)
· 6 years ago
595b516
bpo-38883: Don't use POSIX `$HOME` in `pathlib.Path.home/expanduser` on Windows (GH-17961)
by Miss Islington (bot)
· 6 years ago
cf9d005
[3.8] bpo-39390 shutil: fix argument types for ignore callback (GH-18122)
by mbarkhau
· 6 years ago
5654f83
[3.8] bpo-35182: fix communicate() crash after child closes its pipes (GH-18117) (GH-18148)
by Alex Rebert
· 6 years ago
993811f
bpo-39421: Fix posible crash in heapq with custom comparison operators (GH-18118)
by Miss Islington (bot)
· 6 years ago
f4e3e1c
Move test_math tests (GH-18098) (GH-18102)
by Victor Stinner
· 6 years ago
ab0d8e3
bpo-39389: gzip: fix compression level metadata (GH-18077)
by Miss Islington (bot)
· 6 years ago
5cadd3f
bpo-39386: Prevent double awaiting of async iterator (GH-18081)
by Miss Islington (bot)
· 6 years ago
9955f33
[3.8] bpo-39033: Fix NameError in zipimport during hash validation (GH-17588) (GH-17642)
by Karthikeyan Singaravelan
· 6 years ago
3043ec7
bpo-38293: Allow shallow and deep copying of property objects (GH-16438)
by Miss Islington (bot)
· 6 years ago
df2fb60
[3.8] Add test cases for dataclasses. (GH-17909) (GH-17919)
by Miss Islington (bot)
· 6 years ago
e47a7e3
Fix typo in test's docstring (GH-17856) (GH-17923)
by Miss Islington (bot)
· 6 years ago
8c08518
bpo-25172: Reduce scope of crypt import tests (GH-17881)
by Miss Islington (bot)
· 6 years ago
b24e4fa
bpo-39242: Updated the Gmane domain into news.gmane.io (GH-17903)
by Miss Islington (bot)
· 6 years ago
4112a3d
[3.8] bpo-39191: Fix RuntimeWarning in asyncio test (GH-17863) (#17894)
by Andrew Svetlov
· 6 years ago
b2e281a
bpo-39209: Manage correctly multi-line tokens in interactive mode (GH-17860)
by Miss Islington (bot)
· 6 years ago
49c108c
Fix constant folding optimization for positional only arguments (GH-17837)
by Miss Islington (bot)
· 6 years ago
34aa3e7
bpo-39055: Reject a trailing \n in base64.b64decode() with validate=True. (GH-17616)
by Miss Islington (bot)
· 6 years ago
e1caa49
bpo-39056: Fix handling invalid warning category in the -W option. (GH-17618)
by Miss Islington (bot)
· 6 years ago
fc84d50
bpo-39057: Fix urllib.request.proxy_bypass_environment(). (GH-17619)
by Miss Islington (bot)
· 6 years ago
8595255
Fix SystemError when nested function has annotation on positional-only argument (GH-17826)
by Miss Islington (bot)
· 6 years ago
1d5a7e5
bpo-39142: Avoid converting namedtuple instances to ConvertingTuple. (GH-17773) (GH-17785)
by Miss Islington (bot)
· 6 years ago
6c00495
bpo-39176: Improve error message for 'named assignment' (GH-17777) (GH-17778)
by Miss Islington (bot)
· 6 years ago
2ee8791
[3.8] bpo-38588: Fix possible crashes in dict and list when calling P… (GH-17764)
by Dong-hee Na
· 6 years ago
fcaf14c
bpo-38610: Fix possible crashes in several list methods (GH-17022)
by Miss Islington (bot)
· 6 years ago
0846e5d
[3.8] bpo-38878: Fix os.PathLike __subclasshook__ (GH-17336) (GH-17684)
by Bar Harel
· 6 years ago
b0eb046
bpo-38546: Fix concurrent.futures test_ressources_gced_in_workers() (GH-17652) (GH-17655)
by Victor Stinner
· 6 years ago
35acb35
bpo-38546: multiprocessing tests stop the resource tracker (GH-17641) (GH-17647)
by Victor Stinner
· 6 years ago
b1f2044
[3.8] bpo-39080: Starred Expression's column offset fix when inside a CALL (GH-17645) (GH-17649)
by Pablo Galindo
· 6 years ago
bf3aa10
bpo-38295: prevent test_relative_path of test_py_compile failure on macOS Catalina (GH-17636)
by Ned Deily
· 6 years ago
d21ad67
Fix warnings in test_asyncio.test_base_events (GH-17577) (GH-17579)
by Miss Islington (bot)
· 6 years ago
Next »