- 04 Jun, 2018 8 commits
-
-
Tobias Kunze authored
-
Farhaan Bukhsh authored
The bytes parameter uses big endian.
-
Serhiy Storchaka authored
-
Victor Stinner authored
Fix test_warnings.test_module_globals() when python3 is run with -Werror.
-
INADA Naoki authored
Homebrew's python is now python3, but travis preinstalls old python2. So updated Homebrew requires `brew upgrade python` now. This commit disables auto update and use preinstalled version of Homebrew.
-
Serhiy Storchaka authored
It depended on a global variable set by other tests.
-
Serhiy Storchaka authored
-
Zachary Ware authored
* Prevent spurious message if taking a shortcut * Fix YAML style * Disable largefile tests
-
- 03 Jun, 2018 4 commits
-
-
Serhiy Storchaka authored
-
Stefan Krah authored
-
Cheryl Sabella authored
-
Serhiy Storchaka authored
Separate tests leaked files or were depended on files leaked in other tests.
-
- 02 Jun, 2018 6 commits
-
-
Zackery Spytz authored
`writerows()` takes an iterable.
-
Zach Mitchell authored
This is a simple grammatical fix correcting "...object whose `__self__` attributes is ..." to "...object whose `__self__` attribute is ...".
-
Eitan Adler authored
Fix typos in code comments: bdb.py and configure.ac.
-
Brett Cannon authored
-
Cheryl Sabella authored
The difference from before is that the settings are now on the Highlights tab instead of the Extensions tab and only change one theme at a time instead of all themes. The default for light themes is black on light gray, as before. The default for the IDLE Dark theme is white on dark gray, which better fits the dark theme. When one starts IDLE from a console and loads a custom theme without definitions for 'context', one will see a warning message on the console. To stop the warning, go to Options => Configure IDLE => Highlights, select the custom theme if not selected already, select 'Code Context', and select foreground and background colors.
-
Eric Snow authored
For bpo-32604 I added extra subinterpreter-related tests (see #6914), which caused a few buildbots to crash. This patch fixes the crash by ensuring that refcounts in channels are handled properly.
-
- 01 Jun, 2018 11 commits
-
-
Cheryl Sabella authored
Instead of displaying a fixed number of lines, some blank, Code Context now displays the variable number of actual context lines. When there are no context lines, it shows a single blank line to indicate that the feature is turned on. The Code Context configuration option is changed from 'numlines' (default 3) to 'maxlines' (default 15) to avoid possible interference between user settings for the old and new versions of Code Context.
-
Eric Snow authored
-
Scott Sanderson authored
-
Victor Stinner authored
Use also support.SOCK_MAX_SIZE, not only support.PIPE_MAX_SIZE, to get the size for a blocking send into a multiprocessing pipe.
-
Victor Stinner authored
socketserver.ThreadingMixIn no longer tracks active threads if block_on_close is false.
-
pkerling authored
-
Vinay Sajip authored
-
Vinay Sajip authored
-
Victor Stinner authored
* "running:" progress: Format number of seconds as hours and minutes * format_duration(): count also minutes as hours * Create Lib/test/libregrtest/utils.py
-
Victor Stinner authored
Check which readline implementation is used based on the readline docstring.
-
Timo Furrer authored
A check has been added in Logger.isEnabledFor() to return False when the logger is disabled. This avoids unnecessary work being done when a disabled logger is used.
-
- 31 May, 2018 10 commits
-
-
Victor Stinner authored
* No longer clear filters, like --match, to re-run failed tests in verbose mode (-w option). * Tests result: always indicate if tests have been interrupted. * Enhance tests summary
-
Victor Stinner authored
Get the version of the C compiler.
-
Eric Snow authored
For bpo-32604 I added some subinterpreter-related tests (see #6914) that are causing crashes on a few buildbots. I'm working on fixing the crashes (see #7251). This change temporarily disables the triggering test.
-
Victor Stinner authored
Fix a crash in Python initialization when parsing the command line options. Fix memcpy() size parameter: previously, we read one wchar_t after the end of _PyOS_optarg. Moreover, don't copy the trailingg NUL character: we write it manually anyway. Thanks Christoph Gohlke for the bug report and the fix!
-
Serhiy Storchaka authored
-
Ned Deily authored
-
Steve Dower authored
-
Serhiy Storchaka authored
85% of them are already links.
-
Serhiy Storchaka authored
-
Victor Stinner authored
Fix test_ignore() of multiprocessing tests like test_multiprocessing_forkserver: use support.PIPE_MAX_SIZE to make sure that send_bytes() blocks.
-
- 30 May, 2018 1 commit
-
-
Pablo Galindo authored
-