summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_builtin.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-38839: Fix some unused functions in tests (GH-17189)Adam Johnson2019-11-191-0/+1
* bpo-38237: Make pow's arguments have more descriptive names and be keyword pa...Ammar Askar2019-09-211-0/+13
* Fix the ImportWarning regarding __spec__ and __package__ being None (GH-16003)Xtreak2019-09-121-3/+4
* bpo-37409: fix relative import with no parent (#14956)Ben Lewis2019-09-111-0/+4
* bpo-36781: Optimize sum() for bools. (#13074)Serhiy Storchaka2019-09-101-0/+21
* bpo-15999: Clean up of handling boolean arguments. (GH-15610)Serhiy Storchaka2019-09-011-3/+3
* bpo-37976: Prevent shadowing of TypeError in zip() (GH-15592)Sergey Fedoseev2019-08-301-0/+12
* bpo-37417: Fix error handling in bytearray.extend. (GH-14407)Brandt Bucher2019-06-261-0/+5
* bpo-36027: Extend three-argument pow to negative second argument (GH-13266)Mark Dickinson2019-06-021-1/+2
* bpo-34616: Fix code style and unbreak buildbots (GH-13473)Yury Selivanov2019-05-211-18/+20
* bpo-34616: Add PyCF_ALLOW_TOP_LEVEL_AWAIT to allow top-level await (GH-13148)Matthias Bussonnier2019-05-211-1/+72
* bpo-35742: Fix test_envar_unimportable in test_builtin. (GH-11561)Serhiy Storchaka2019-01-151-0/+1
* bpo-35133: Fix mistakes when concatenate string literals on different lines. ...Serhiy Storchaka2018-11-051-1/+1
* bpo-34320: Fix dict(o) didn't copy order of dict subclass (GH-8624)INADA Naoki2018-09-261-0/+9
* bpo-34637: Make the *start* argument for *sum()* visible as a keyword argumen...Raymond Hettinger2018-09-121-0/+3
* bpo-34149: Behavior of the min/max with key=None (GH-8328)Alexander Marshalov2018-07-241-0/+4
* bpo-27169: The __debug__ constant is now optimized out at compile time. (#4880)Serhiy Storchaka2017-12-151-8/+8
* bpo-29240: PEP 540: Add a new UTF-8 Mode (#855)Victor Stinner2017-12-131-0/+1
* PEP 553 built-in breakpoint() function (bpo-31353) (#3355)Barry Warsaw2017-10-051-1/+109
* bpo-31657: Add test coverage for the __debug__ case (GH-3450)diana2017-10-031-8/+11
* bpo-31160: test_builtin: don't check waitpid() status (#3050)Victor Stinner2017-08-091-2/+2
* bpo-31160: Fix test_builtin for zombie process (#3043)Victor Stinner2017-08-091-0/+4
* [security] bpo-13617: Reject embedded null characters in wchar* strings. (#2302)Serhiy Storchaka2017-06-281-0/+6
* bpo-29839: Raise ValueError rather than OverflowError in len() for negative v...Serhiy Storchaka2017-04-161-0/+8
* bpo-29919: Remove unused imports found by pyflakes (#137)Victor Stinner2017-03-271-1/+1
* Issue #29327: Fixed a crash when pass the iterable keyword argument to sorted().Serhiy Storchaka2017-01-201-0/+10
* Issue #28385: An error message when non-empty format spec is passed toSerhiy Storchaka2016-10-301-13/+11
|\
| * Issue #28385: An error message when non-empty format spec is passed toSerhiy Storchaka2016-10-301-13/+11
* | Issue #24254: Drop cls.__definition_order__.Eric Snow2016-09-081-191/+1
* | #27364: fix "incorrect" uses of escape character in the stdlib.R David Murray2016-09-081-2/+2
* | Issue #24254: Preserve class attribute definition order.Eric Snow2016-09-051-1/+191
* | MergeRaymond Hettinger2016-09-031-0/+11
|\ \ | |/
| * Issue 27936: Fix inconsistent round() behavior between float and intRaymond Hettinger2016-09-031-0/+11
* | Issue #27366: Implement PEP 487Nick Coghlan2016-07-301-15/+5
|/
* Issue #25983: Added tests for multi-argument type().Serhiy Storchaka2016-02-081-0/+155
* Issue #24402: Merge potential test fix from 3.4 into 3.5Martin Panter2015-10-101-45/+48
|\
| * Issue #24402: Factor out PtyTests.run_child() in input() testsMartin Panter2015-10-101-45/+48
* | Issue #24402: Merge input() fix from 3.4 into 3.5Martin Panter2015-10-101-76/+110
|\ \ | |/
| * Issue #24402: Fix input() when stdout.fileno() fails; diagnosed by EryksunMartin Panter2015-10-101-76/+110
* | Issue #9517: Move script_helper to the support package.Berker Peksag2015-05-061-1/+1
* | Issue #22777: Test pickling with all protocols.Serhiy Storchaka2014-12-151-11/+14
|\ \ | |/
| * Issue #22777: Test pickling with all protocols.Serhiy Storchaka2014-12-151-11/+14
| * Issue #20599: Don't clear environment in test_cleanup() of test_builtinVictor Stinner2014-02-131-2/+1
| * Issue #20599: Force ASCII encoding for stdout in test_cleanup() of test_builtinVictor Stinner2014-02-121-3/+11
| * Try to fix test_cleanup (issue #20599).Serhiy Storchaka2014-02-121-2/+2
| * Issue #19255: The builtins module is restored to initial value beforeSerhiy Storchaka2014-02-101-0/+29
* | Issue #22215: Now ValueError is raised instead of TypeError when str or bytesSerhiy Storchaka2014-09-061-2/+2
* | test the change of #21193 correctlyBenjamin Peterson2014-04-111-2/+2
* | Issue #21193: Make (e.g.,) pow(2, -3, 5) raise ValueError rather than TypeErr...Mark Dickinson2014-04-111-1/+1
* | Issue #20599: Don't clear environment in test_cleanup() of test_builtinVictor Stinner2014-02-131-2/+1