summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * Add NEWS items for Idle.Terry Jan Reedy2015-09-211-0/+15
| |
* | Issue #25169: os.getppid() is available on Windows since Python 3.2.Berker Peksag2015-09-211-2/+1
|\ \ | |/ | | | | Patch by Bar Harel.
| * Issue #25169: os.getppid() is available on Windows since Python 3.2.Berker Peksag2015-09-211-2/+1
| | | | | | | | Patch by Bar Harel.
* | Merge with 3.4Terry Jan Reedy2015-09-211-3/+1
|\ \ | |/
| * Issue #16893: finish deprecation.Terry Jan Reedy2015-09-211-3/+1
| |
* | Merge with 3.4Terry Jan Reedy2015-09-212-3/+14
|\ \ | |/
| * Issue #25199: Idle: add synchronization comments for future maintainers.Terry Jan Reedy2015-09-212-3/+14
| |
* | Merge with 3.4Terry Jan Reedy2015-09-211-14/+14
|\ \ | |/
| * Issue #16893: whitespace in idle.html.Terry Jan Reedy2015-09-211-14/+14
| |
* | Merge with 3.4Terry Jan Reedy2015-09-206-12/+927
|\ \ | |/
| * Issue #16893: Replace help.txt with idle.html for Idle doc display.Terry Jan Reedy2015-09-206-12/+927
| | | | | | | | | | | | | | | | The new idlelib/idle.html is copied from Doc/build/html/idle.html. It looks better than help.txt and will better document Idle as released. The tkinter html viewer that works for this file was written by Rose Roseman. The new code is in idlelib/help.py, a new file for help menu classes. The now unused EditorWindow.HelpDialog class and helt.txt file are deprecated.
* | merge 3.4 (#25145)Benjamin Peterson2015-09-201-3/+2
|\ \ | |/
| * remove reference to PyGoogle (#25145)Benjamin Peterson2015-09-201-2/+1
| | | | | | | | Patch by Bar Harel.
| * use a more modern UA (#25145)Benjamin Peterson2015-09-201-1/+1
| |
* | Merge with 3.4Terry Jan Reedy2015-09-201-1/+1
|\ \ | |/
| * Issue #24199: Add stacklevel to deprecation warning call.Terry Jan Reedy2015-09-201-1/+1
| |
* | Issue #25176: Merge cgi.parse_qsl link from 3.4 into 3.5Martin Panter2015-09-202-1/+2
|\ \ | |/
| * Issue #25176: Correct link for cgi.parse_qsl; patch from Ville SkyttäMartin Panter2015-09-202-1/+2
| |
* | Issue #24999: In longobject.c, use two shifts instead of ">> 2*PyLong_SHIFT" toVictor Stinner2015-09-191-4/+6
| | | | | | | | | | | | avoid undefined behaviour when LONG_MAX type is smaller than 60 bits. This change should fix a warning with the ICC compiler.
* | Issue #25101: Try to create a file to test write access in test_zipfile.Serhiy Storchaka2015-09-191-0/+7
|\ \ | |/
| * Issue #25101: Try to create a file to test write access in test_zipfile.Serhiy Storchaka2015-09-191-0/+7
| |
* | Make it clearer that the constants in the selectors docs are module-levelBrett Cannon2015-09-181-2/+2
| |
* | Issue #24915: Add Clang support to PGO builds and use the test suiteBrett Cannon2015-09-188-7/+185
| | | | | | | | | | | | for profile data. Thanks to Alecsandru Patrascu of Intel for the initial patch.
* | Merge 3.4 (test_email)Victor Stinner2015-09-181-0/+3
|\ \ | |/
| * Issue #24836: Skip FormatDateTests of test_email.test_utils on Mac OS X SnowVictor Stinner2015-09-181-0/+3
| | | | | | | | Leopard because this OS uses out of date (pre 2011k) timezone files.
* | Issue #25150: Hide the private _Py_atomic_xxx symbols from the publicVictor Stinner2015-09-183-16/+11
| | | | | | | | | | | | | | | | | | Python.h header to fix a compilation error with OpenMP. PyThreadState_GET() becomes an alias to PyThreadState_Get() to avoid ABI incompatibilies. It is important that the _PyThreadState_Current variable is always accessed with the same implementation of pyatomic.h. Use the PyThreadState_Get() function so extension modules will all reuse the same implementation.
* | Merge 3.4 (datetime rounding)Victor Stinner2015-09-184-45/+110
|\ \ | |/
| * Issue #23517: Fix rounding in fromtimestamp() and utcfromtimestamp() methodsVictor Stinner2015-09-184-41/+113
| | | | | | | | | | | | | | | | | | | | | | | | | | of datetime.datetime: microseconds are now rounded to nearest with ties going to nearest even integer (ROUND_HALF_EVEN), instead of being rounding towards zero (ROUND_DOWN). It's important that these methods use the same rounding mode than datetime.timedelta to keep the property: (datetime(1970,1,1) + timedelta(seconds=t)) == datetime.utcfromtimestamp(t) It also the rounding mode used by round(float) for example. Add more unit tests on the rounding mode in test_datetime.
* | Issue #25155: Fix _PyTime_Divide() roundingVictor Stinner2015-09-182-11/+16
| | | | | | | | | | _PyTime_Divide() rounding was wrong: copy code from Python default which has now much better unit tests.
* | Issue #25155: document the bugfix in Misc/NEWSVictor Stinner2015-09-181-0/+4
| | | | | | | | Oops, I forgot to document my change.
* | odictobject.c: fix compiler warningVictor Stinner2015-09-181-1/+1
| | | | | | | | | | PyObject_Length() returns a P_ssize_t, not an int. Use a Py_ssize_t to avoid overflow.
* | Issue #25155: Add _PyTime_AsTimevalTime_t() functionVictor Stinner2015-09-183-42/+78
| | | | | | | | | | | | | | | | | | | | | | | | | | | | On Windows, the tv_sec field of the timeval structure has the type C long, whereas it has the type C time_t on all other platforms. A C long has a size of 32 bits (signed inter, 1 bit for the sign, 31 bits for the value) which is not enough to store an Epoch timestamp after the year 2038. Add the _PyTime_AsTimevalTime_t() function written for datetime.datetime.now(): convert a _PyTime_t timestamp to a (secs, us) tuple where secs type is time_t. It allows to support dates after the year 2038 on Windows. Enhance also _PyTime_AsTimeval_impl() to detect overflow on the number of seconds when rounding the number of microseconds.
* | Issue #25122: sync test_eintr with Python 3.6Victor Stinner2015-09-182-98/+200
| | | | | | | | | | | | | | | | | | | | * test_eintr: support verbose mode, don't redirect eintr_tester output into a pipe * eintr_tester: replace os.fork() with subprocess to have a cleaner child process (ex: don't inherit setitimer()) * eintr_tester: kill the process if the unit test fails * test_open/test_os_open(): write support.PIPE_MAX_SIZE bytes instead of support.PIPE_MAX_SIZE*3 bytes
* | Issue #25160: Fix import_init() comments and messagesVictor Stinner2015-09-181-3/+4
| | | | | | | | import_init() imports the "_imp" module, not the "imp" module.
* | Null mergeSerhiy Storchaka2015-09-180-0/+0
|\ \ | |/
| * Issue #25108: Backported tests for traceback functions print_stack(),Serhiy Storchaka2015-09-181-0/+35
| | | | | | | | format_stack(), and extract_stack() called without arguments.
* | Issue #25108: Omitted internal frames in traceback functions print_stack(),Serhiy Storchaka2015-09-183-0/+44
| | | | | | | | format_stack(), and extract_stack() called without arguments.
* | Issue24756: clarify usage of run_docstring_examples()Ethan Furman2015-09-181-7/+23
|\ \ | |/
| * Issue24756: clarify usage of run_docstring_examples()Ethan Furman2015-09-181-7/+23
| |
* | whatsnew/3.5: Reword bytes*.hex messageYury Selivanov2015-09-161-3/+2
| |
* | Issue #25134: Update asyncio doc for SSL on WindowsVictor Stinner2015-09-151-2/+6
| | | | | | | | ProactorEventLoop now supports SSL.
* | whatsnew/3.5: Add missing word "class"Berker Peksag2015-09-151-1/+1
| |
* | Issue #25127: Fix typo in concurrent.futures.rstBerker Peksag2015-09-151-1/+1
|\ \ | |/ | | | | Reported by Jakub Wilk.
| * Issue #25127: Fix typo in concurrent.futures.rstBerker Peksag2015-09-151-1/+1
| | | | | | | | Reported by Jakub Wilk.
* | Issue #25105: Update susp-ignored.csv to avoid false positivesBerker Peksag2015-09-151-0/+5
| |
* | Issue #25118: Fix a regression of Python 3.5.0 in os.waitpid() on Windows.Victor Stinner2015-09-153-2/+10
| | | | | | | | Add an unit test on os.waitpid()
* | Merge 3.4 (test_gdb)Victor Stinner2015-09-141-1/+1
|\ \ | |/
| * test_gdb: fix regex to parse the GDB versionVictor Stinner2015-09-141-1/+1
| | | | | | | | Fix the regex to support the version 7.10: minor version with two digits
* | Closes #25078: Document InstallAllUsers installer parameter default 0Steve Dower2015-09-131-1/+1
| |
* | Fixed a typo in the -b option.Serhiy Storchaka2015-09-131-1/+1
| |