]> granicus.if.org Git - python/log
python
8 years agoIssue #27419: Added temporary workaround for subinterpreters.
Serhiy Storchaka [Sun, 17 Jul 2016 11:15:28 +0000 (14:15 +0300)]
Issue #27419: Added temporary workaround for subinterpreters.

8 years agoIssues #23147, #23148: Presumably fixed bugs in folding UnstructuredTokenList.
Serhiy Storchaka [Sun, 17 Jul 2016 10:25:15 +0000 (13:25 +0300)]
Issues #23147, #23148: Presumably fixed bugs in folding UnstructuredTokenList.

8 years agoIssue #27419: Standard __import__() no longer look up "__import__" in globals
Serhiy Storchaka [Sun, 17 Jul 2016 09:47:17 +0000 (12:47 +0300)]
Issue #27419: Standard __import__() no longer look up "__import__" in globals
or builtins for importing submodules or "from import".  Fixed handling an
error of non-string package name.

8 years agoIssue #17711: Fixed unpickling by the persistent ID with protocol 0.
Serhiy Storchaka [Sun, 17 Jul 2016 08:24:17 +0000 (11:24 +0300)]
Issue #17711: Fixed unpickling by the persistent ID with protocol 0.
Original patch by Alexandre Vassalotti.

8 years agoFixes use of Py_IntDir and Py_OutDir to control build directories.
Steve Dower [Sat, 16 Jul 2016 23:13:19 +0000 (16:13 -0700)]
Fixes use of Py_IntDir and Py_OutDir to control build directories.

8 years agoIssue #25507: IDLE no longer runs buggy code because of its tkinter imports.
Terry Jan Reedy [Sat, 16 Jul 2016 22:26:32 +0000 (18:26 -0400)]
Issue #25507: IDLE no longer runs buggy code because of its tkinter imports.
Users must include the same imports required to run directly in Python.

8 years agoFix regressions introduced by fixes for issue #27083.
Brett Cannon [Sat, 16 Jul 2016 17:44:13 +0000 (10:44 -0700)]
Fix regressions introduced by fixes for issue #27083.

8 years ago#27522: break unintended cycle in feedparser.
R David Murray [Sat, 16 Jul 2016 01:29:13 +0000 (21:29 -0400)]
#27522: break unintended cycle in feedparser.

Patch by Costas.

8 years agoIssue #26696: Document collections.abc.ByteString.
Brett Cannon [Fri, 15 Jul 2016 19:16:18 +0000 (12:16 -0700)]
Issue #26696: Document collections.abc.ByteString.

Thanks to Xiang Zhang for the patch.

8 years agoFix building tcl/tk with only the VC build tools installed.
Steve Dower [Fri, 15 Jul 2016 18:55:52 +0000 (11:55 -0700)]
Fix building tcl/tk with only the VC build tools installed.

8 years agoIssue #27083: Respect the PYTHONCASEOK environment variable under
Brett Cannon [Fri, 15 Jul 2016 18:54:38 +0000 (11:54 -0700)]
Issue #27083: Respect the PYTHONCASEOK environment variable under
Windows.

Originally only b'PYTHONCASEOK' was being checked for in os.environ,
but that won't work under Windows where all environment variables are
strings (on OS X they are bytes).

Thanks to Eryk Sun for the bug report.

8 years agoIssue #26844: Fix imp.find_module() to have the exception related to
Brett Cannon [Fri, 15 Jul 2016 17:58:54 +0000 (10:58 -0700)]
Issue #26844: Fix imp.find_module() to have the exception related to
type issues be about 'path' instead of 'name'.

Thanks to Lev Maximov for the patch.

8 years agoIssue #27518: Fix typo in Grammar/Grammar
Berker Peksag [Fri, 15 Jul 2016 13:12:39 +0000 (16:12 +0300)]
Issue #27518: Fix typo in Grammar/Grammar

Patch by Stéphane Wirtel.

8 years agomake too many nested blocks be a SyntaxError instead of a SystemError (closes #27514)
Benjamin Peterson [Fri, 15 Jul 2016 05:00:03 +0000 (22:00 -0700)]
make too many nested blocks be a SyntaxError instead of a SystemError (closes #27514)

Patch by Ammar Askar.

8 years agoIssue #27180: Clarify Path.rename() behavior on Unix systems
Berker Peksag [Thu, 14 Jul 2016 04:44:59 +0000 (07:44 +0300)]
Issue #27180: Clarify Path.rename() behavior on Unix systems

Patch by Evelyn Mitchell.

8 years agoIssue #27455: Improve examples in tkinter documentation
Berker Peksag [Thu, 14 Jul 2016 04:32:43 +0000 (07:32 +0300)]
Issue #27455: Improve examples in tkinter documentation

Patch by John Hagen.

8 years agoIssue #27369: Merge test_pyexpat from 3.4 into 3.5
Martin Panter [Thu, 14 Jul 2016 03:35:15 +0000 (03:35 +0000)]
Issue #27369: Merge test_pyexpat from 3.4 into 3.5

8 years agoFixes build order and lingering intermediate files.
Steve Dower [Thu, 14 Jul 2016 02:58:21 +0000 (19:58 -0700)]
Fixes build order and lingering intermediate files.

8 years agoIssue #27369: Merge test_pyexpat from 3.3 into 3.4
Martin Panter [Thu, 14 Jul 2016 02:09:17 +0000 (02:09 +0000)]
Issue #27369: Merge test_pyexpat from 3.3 into 3.4

8 years agoIssue #27369: Merge test_pyexpat from 3.2 into 3.3
Martin Panter [Thu, 14 Jul 2016 01:42:53 +0000 (01:42 +0000)]
Issue #27369: Merge test_pyexpat from 3.2 into 3.3

8 years agoIssue #27369: Don’t test error message detail that changed in Expat 2.2.0 3.2
Martin Panter [Thu, 14 Jul 2016 01:31:46 +0000 (01:31 +0000)]
Issue #27369: Don’t test error message detail that changed in Expat 2.2.0

8 years agoIssue #22758: Move NEWS entry to Library section
Martin Panter [Thu, 14 Jul 2016 01:17:03 +0000 (01:17 +0000)]
Issue #22758: Move NEWS entry to Library section

8 years agoIssue #27392: Add loop.connect_accepted_socket().
Yury Selivanov [Tue, 12 Jul 2016 22:23:10 +0000 (18:23 -0400)]
Issue #27392: Add loop.connect_accepted_socket().

Patch by Jim Fulton.

8 years agoIssue #27481: Docummented that ValueError is now raised instead of TypeError
Serhiy Storchaka [Tue, 12 Jul 2016 06:14:15 +0000 (09:14 +0300)]
Issue #27481: Docummented that ValueError is now raised instead of TypeError
in case of embedded null characters/bytes.  Patch by Xiang Zhang.

8 years agoEnglish spelling and grammar fixes
Martin Panter [Mon, 11 Jul 2016 07:51:37 +0000 (07:51 +0000)]
English spelling and grammar fixes

8 years agoRestore NEWS entries lost in revision 8145f25f26aa
Martin Panter [Mon, 11 Jul 2016 12:43:38 +0000 (12:43 +0000)]
Restore NEWS entries lost in revision 8145f25f26aa

8 years agoIssue #23804: Fix SSL zero-length recv() calls to not block and raise EOF
Martin Panter [Mon, 11 Jul 2016 00:17:13 +0000 (00:17 +0000)]
Issue #23804: Fix SSL zero-length recv() calls to not block and raise EOF

8 years agoMerge heads
Serhiy Storchaka [Sun, 10 Jul 2016 18:34:05 +0000 (21:34 +0300)]
Merge heads

8 years ago#22758 null merge
R David Murray [Sun, 10 Jul 2016 18:11:36 +0000 (14:11 -0400)]
#22758 null merge

8 years ago#22758 null merge
R David Murray [Sun, 10 Jul 2016 18:10:56 +0000 (14:10 -0400)]
#22758 null merge

8 years ago#22758 null merge
R David Murray [Sun, 10 Jul 2016 18:10:08 +0000 (14:10 -0400)]
#22758 null merge

8 years ago#26176: fix usage of Address constructor in email examples.
R David Murray [Sun, 10 Jul 2016 17:59:01 +0000 (13:59 -0400)]
#26176: fix usage of Address constructor in email examples.

Patch by Nathan Harold.

8 years agoIssue #27473: Fixed possible integer overflow in bytes and bytearray
Serhiy Storchaka [Sun, 10 Jul 2016 17:48:43 +0000 (20:48 +0300)]
Issue #27473: Fixed possible integer overflow in bytes and bytearray
concatenations.  Patch by Xiang Zhang.

8 years ago#22758: fix regression in handling of secure cookies.
R David Murray [Sun, 10 Jul 2016 17:32:43 +0000 (13:32 -0400)]
#22758: fix regression in handling of secure cookies.

This backports the fix from #16611, per discussion with the release
manager.

8 years ago#20647: Update dictobject.c comments to account for randomized string hashes.
R David Murray [Sun, 10 Jul 2016 16:33:18 +0000 (12:33 -0400)]
#20647: Update dictobject.c comments to account for randomized string hashes.

Patch by Jaysinh Shukla.

8 years agoIssue #27466: Change time format returned by http.cookie.time2netscape,
Senthil Kumaran [Sun, 10 Jul 2016 13:45:38 +0000 (06:45 -0700)]
Issue #27466: Change time format returned by http.cookie.time2netscape,
confirming the netscape cookie format.

8 years agoIssue #27332: Fixed the type of the first argument of module-level functions
Serhiy Storchaka [Thu, 7 Jul 2016 14:35:15 +0000 (17:35 +0300)]
Issue #27332: Fixed the type of the first argument of module-level functions
generated by Argument Clinic.  Patch by Petr Viktorin.

8 years agoassume egd unless OPENSSL_NO_EGD is defined—remove configure check (closes #24557)
Benjamin Peterson [Thu, 7 Jul 2016 06:55:15 +0000 (23:55 -0700)]
assume egd unless OPENSSL_NO_EGD is defined—remove configure check (closes #24557)

8 years agofix refleaks in PyDict_SetItem error cases (closes #27248)
Benjamin Peterson [Thu, 7 Jul 2016 06:26:32 +0000 (23:26 -0700)]
fix refleaks in PyDict_SetItem error cases (closes #27248)

8 years agoFix a test with the new upload URL
Donald Stufft [Wed, 6 Jul 2016 21:46:37 +0000 (17:46 -0400)]
Fix a test with the new upload URL

8 years agomerge 3.4
Benjamin Peterson [Wed, 6 Jul 2016 21:04:29 +0000 (14:04 -0700)]
merge 3.4

8 years agomerge 3.3
Benjamin Peterson [Wed, 6 Jul 2016 21:04:11 +0000 (14:04 -0700)]
merge 3.3

8 years agomerge 3.4
Benjamin Peterson [Wed, 6 Jul 2016 21:00:38 +0000 (14:00 -0700)]
merge 3.4

8 years agoSwitch to the new upload url for PyPI
Donald Stufft [Wed, 6 Jul 2016 20:18:39 +0000 (16:18 -0400)]
Switch to the new upload url for PyPI

8 years agoSwitch to the new upload url for PyPI
Donald Stufft [Wed, 6 Jul 2016 19:27:35 +0000 (15:27 -0400)]
Switch to the new upload url for PyPI

8 years agoIssue #27452: add line counter and crc to IDLE configHandler test dump.
Terry Jan Reedy [Wed, 6 Jul 2016 00:09:53 +0000 (20:09 -0400)]
Issue #27452: add line counter and crc to IDLE configHandler test dump.

8 years agoAdd versionadded to PyDict_SetDefault documentation
Berker Peksag [Tue, 5 Jul 2016 14:08:29 +0000 (17:08 +0300)]
Add versionadded to PyDict_SetDefault documentation

It was added for Python 3.4 in a0b750ea3397.

8 years agoIssue #19527: Fixed tests with defined COUNT_ALLOCS.
Serhiy Storchaka [Sun, 3 Jul 2016 19:27:26 +0000 (22:27 +0300)]
Issue #19527: Fixed tests with defined COUNT_ALLOCS.

8 years agoIssue #27443: __length_hint__() of bytearray itearator no longer return
Serhiy Storchaka [Sun, 3 Jul 2016 11:41:36 +0000 (14:41 +0300)]
Issue #27443: __length_hint__() of bytearray itearator no longer return
negative integer for resized bytearray.

8 years agoIssue #27431: Update default protocol version in shelve.Shelf() documentation
Berker Peksag [Fri, 1 Jul 2016 09:33:00 +0000 (12:33 +0300)]
Issue #27431: Update default protocol version in shelve.Shelf() documentation

shelve.open() documentation was updated in f351fb7ea179.

8 years agoIssue #27430: Fix typos, patch by scop.
Berker Peksag [Fri, 1 Jul 2016 09:17:05 +0000 (12:17 +0300)]
Issue #27430: Fix typos, patch by scop.

8 years agoIssue #26665: Remove mis-use of ``$`` in activate.fish.
Brett Cannon [Thu, 30 Jun 2016 18:41:55 +0000 (11:41 -0700)]
Issue #26665: Remove mis-use of ``$`` in activate.fish.

This is a revertion of cfc66e37eb8e.

Thanks to 鄭景文 for the bug report. Thanks to Tin Tvrtković, Xiang
Zhang, and Dan McCombs for diagnosing the issue.

8 years agoIssue #4945: Improved the documenting of boolean arguments in the json module.
Serhiy Storchaka [Thu, 30 Jun 2016 10:59:12 +0000 (13:59 +0300)]
Issue #4945: Improved the documenting of boolean arguments in the json module.
Based on patch by Gabriel Genellina.

8 years agoIssue #27416: clarify copy doc
Victor Stinner [Thu, 30 Jun 2016 09:50:23 +0000 (11:50 +0200)]
Issue #27416: clarify copy doc

Patch written by R. David Murray.

8 years agoIssue #27418: Fixed Tools/importbench/importbench.py.
Serhiy Storchaka [Thu, 30 Jun 2016 07:33:17 +0000 (10:33 +0300)]
Issue #27418: Fixed Tools/importbench/importbench.py.

8 years agoFix issue #27402: example for typing did not type-check.
Guido van Rossum [Tue, 28 Jun 2016 17:08:17 +0000 (10:08 -0700)]
Fix issue #27402: example for typing did not type-check.

8 years agoasyncio: Use socket specs for getaddrinfo() in sock_connect()
Yury Selivanov [Tue, 28 Jun 2016 15:00:22 +0000 (11:00 -0400)]
asyncio: Use socket specs for getaddrinfo() in sock_connect()

Patch by Martin Richard.  GH PR #365.

8 years agoasyncio: Fix NameError in sslproto _fatal_error()
Yury Selivanov [Tue, 28 Jun 2016 14:55:36 +0000 (10:55 -0400)]
asyncio: Fix NameError in sslproto _fatal_error()

Patch by Richard Walker.

8 years agoAdds script for purging the caching server for downloads on python.org.
Steve Dower [Mon, 27 Jun 2016 19:30:48 +0000 (12:30 -0700)]
Adds script for purging the caching server for downloads on python.org.

8 years agoAdds batch file to build nuget packages.
Steve Dower [Mon, 27 Jun 2016 16:43:17 +0000 (09:43 -0700)]
Adds batch file to build nuget packages.

8 years agoInclude libs folder in nuget package and allow preinstalling packages
Steve Dower [Mon, 27 Jun 2016 16:34:18 +0000 (09:34 -0700)]
Include libs folder in nuget package and allow preinstalling packages

8 years agoIssue #27393: Fix escaping of C:\ too
Berker Peksag [Mon, 27 Jun 2016 10:10:47 +0000 (13:10 +0300)]
Issue #27393: Fix escaping of C:\ too

8 years agoIssue #27393: Fix escaping of venv activate commands on Windows
Berker Peksag [Mon, 27 Jun 2016 06:51:40 +0000 (09:51 +0300)]
Issue #27393: Fix escaping of venv activate commands on Windows

Patch by Manuel Kaufmann.

8 years agoNull merge from 3.4 (well, except, pull in the tag for 3.4.5.)
Larry Hastings [Mon, 27 Jun 2016 02:57:48 +0000 (19:57 -0700)]
Null merge from 3.4 (well, except, pull in the tag for 3.4.5.)

8 years agoMerge.
Larry Hastings [Mon, 27 Jun 2016 02:53:18 +0000 (19:53 -0700)]
Merge.

8 years agoPost-release fixups for Python 3.5.2.
Larry Hastings [Mon, 27 Jun 2016 02:47:22 +0000 (19:47 -0700)]
Post-release fixups for Python 3.5.2.

8 years agoMerge.
Larry Hastings [Mon, 27 Jun 2016 02:43:00 +0000 (19:43 -0700)]
Merge.

8 years agoPost-release fixups for Python 3.4.5.
Larry Hastings [Mon, 27 Jun 2016 02:41:21 +0000 (19:41 -0700)]
Post-release fixups for Python 3.4.5.

8 years agoUpdate NEWS and idlelib NEWS.text.
Terry Jan Reedy [Sun, 26 Jun 2016 22:20:20 +0000 (18:20 -0400)]
Update NEWS and idlelib NEWS.text.

8 years agoIssue #22115: Fixed tracing Tkinter variables:
Serhiy Storchaka [Sun, 26 Jun 2016 14:42:23 +0000 (17:42 +0300)]
Issue #22115: Fixed tracing Tkinter variables:

* tracing in the "u" mode now works
* trace_vdelete() with wrong mode no longer break tracing
* trace_vinfo() now always returns a list of pairs of strings

8 years agoSimplifies nuget build with better parameters.
Steve Dower [Sat, 25 Jun 2016 23:13:30 +0000 (16:13 -0700)]
Simplifies nuget build with better parameters.

8 years agoAdded tag v3.4.5 for changeset 619b61e505d0
Larry Hastings [Sat, 25 Jun 2016 21:44:49 +0000 (14:44 -0700)]
Added tag v3.4.5 for changeset 619b61e505d0

8 years agoVersion bump for 3.4.5 final. v3.4.5
Larry Hastings [Sat, 25 Jun 2016 21:44:30 +0000 (14:44 -0700)]
Version bump for 3.4.5 final.

8 years agoRegenerate pydoc topics for 3.4.5 final.
Larry Hastings [Sat, 25 Jun 2016 21:42:04 +0000 (14:42 -0700)]
Regenerate pydoc topics for 3.4.5 final.

8 years agoAdded tag v3.5.2 for changeset 4def2a2901a5
Larry Hastings [Sat, 25 Jun 2016 21:11:29 +0000 (14:11 -0700)]
Added tag v3.5.2 for changeset 4def2a2901a5

8 years agoVersion number bump for 3.5.2 final. v3.5.2
Larry Hastings [Sat, 25 Jun 2016 21:11:09 +0000 (14:11 -0700)]
Version number bump for 3.5.2 final.

8 years agoUpdate pydoc topics for 3.5.2 final.
Larry Hastings [Sat, 25 Jun 2016 21:09:37 +0000 (14:09 -0700)]
Update pydoc topics for 3.5.2 final.

8 years agoFix a scoping issue where an UnboundLocalError was triggered if a
Brett Cannon [Sat, 25 Jun 2016 17:47:53 +0000 (10:47 -0700)]
Fix a scoping issue where an UnboundLocalError was triggered if a
lazy-loaded module was already in sys.modules.

8 years agoRemove a stale reference to pathlib.PurePath.path
Brett Cannon [Fri, 24 Jun 2016 19:22:14 +0000 (12:22 -0700)]
Remove a stale reference to pathlib.PurePath.path

8 years agoPreinstalls pip into the nuget package so that pip.exe is available after installation.
Steve Dower [Fri, 24 Jun 2016 18:37:50 +0000 (11:37 -0700)]
Preinstalls pip into the nuget package so that pip.exe is available after installation.

8 years agoAdds scripts for producing Nuget packages.
Steve Dower [Fri, 24 Jun 2016 17:32:15 +0000 (10:32 -0700)]
Adds scripts for producing Nuget packages.

8 years agoIssue #27381: Remove superfluous paren in zipfile documentation
Berker Peksag [Fri, 24 Jun 2016 09:56:50 +0000 (12:56 +0300)]
Issue #27381: Remove superfluous paren in zipfile documentation

8 years agoIssue #18300: Set TERM='' by default in assert_python_*
Berker Peksag [Fri, 24 Jun 2016 06:28:50 +0000 (09:28 +0300)]
Issue #18300: Set TERM='' by default in assert_python_*

8 years agoIssue #26547: Remove outdated term dictproxy from vars() documentation
Berker Peksag [Fri, 24 Jun 2016 06:12:01 +0000 (09:12 +0300)]
Issue #26547: Remove outdated term dictproxy from vars() documentation

dictproxy was used in Python 2 and it was renamed to mappingproxy
in Python 3.3.

Patch by Julien.

8 years agoIssue #27378: Remove an outdated reference from regex HOWTO
Berker Peksag [Fri, 24 Jun 2016 05:54:43 +0000 (08:54 +0300)]
Issue #27378: Remove an outdated reference from regex HOWTO

Patch by Matt Morrison.

8 years agoMake PyPIRCCommandTestCase derive from a base class
Berker Peksag [Fri, 24 Jun 2016 05:48:27 +0000 (08:48 +0300)]
Make PyPIRCCommandTestCase derive from a base class

Several test cases in distutils use PyPIRCCommandTestCase as
their base class and as a result of that the following tests
were ran more than once:

* test_server_registration
* test_server_empty_registration
* test_config_interpolation

This commit moves the infrastructure used by other tests
into a new BasePyPIRCCommandTestCase class.

8 years agoFixed integer overflow in array.buffer_info().
Serhiy Storchaka [Thu, 23 Jun 2016 20:55:34 +0000 (23:55 +0300)]
Fixed integer overflow in array.buffer_info().

8 years agoIssue #27304: Source code links for sub-packages in the same file.
Terry Jan Reedy [Thu, 23 Jun 2016 02:46:34 +0000 (22:46 -0400)]
Issue #27304: Source code links for sub-packages in the same file.
Patch by Yoni Lavi

8 years agoIssue #27365: Allow non-ascii in idlelib/NEWS.txt, for contributor names.
Terry Jan Reedy [Wed, 22 Jun 2016 08:17:28 +0000 (04:17 -0400)]
Issue #27365: Allow non-ascii in idlelib/NEWS.txt, for contributor names.
Rest of patch that should not be cherry picked into 3.5.2 final.

8 years agoIssue #27365: Allow non-ascii in idlelib/NEWS.txt - minimal part for 3.5.2.
Terry Jan Reedy [Wed, 22 Jun 2016 07:55:20 +0000 (03:55 -0400)]
Issue #27365: Allow non-ascii in idlelib/NEWS.txt - minimal part for 3.5.2.

8 years agoIssue #27365: Allow non-ascii in idlelib/NEWS.txt - minimal part for 3.5.2.
Terry Jan Reedy [Wed, 22 Jun 2016 07:55:20 +0000 (03:55 -0400)]
Issue #27365: Allow non-ascii in idlelib/NEWS.txt - minimal part for 3.5.2.

8 years agoalter header; '%' really throws latex through a loop
Benjamin Peterson [Wed, 22 Jun 2016 06:47:16 +0000 (23:47 -0700)]
alter header; '%' really throws latex through a loop

8 years agoalter header; '%' really throws latex through a loop
Benjamin Peterson [Wed, 22 Jun 2016 06:47:16 +0000 (23:47 -0700)]
alter header; '%' really throws latex through a loop

8 years agoIssue #20120: Add a test case to verify the % char can be used in .pypirc
Berker Peksag [Mon, 20 Jun 2016 18:41:34 +0000 (21:41 +0300)]
Issue #20120: Add a test case to verify the % char can be used in .pypirc

I noticed that there is no test for this feature while doing
triaging work on pypa/pypi-legacy.

8 years agoIssue #27006: Do not use PyDec_CheckExact() on a type.
Stefan Krah [Mon, 20 Jun 2016 12:12:52 +0000 (14:12 +0200)]
Issue #27006: Do not use PyDec_CheckExact() on a type.

8 years agoIssue #27006: from_float(): call the subclass' __new__() and __init__().
Stefan Krah [Mon, 20 Jun 2016 10:10:13 +0000 (12:10 +0200)]
Issue #27006: from_float(): call the subclass' __new__() and __init__().

8 years agoFix spelling errors in code comments
Martin Panter [Mon, 20 Jun 2016 07:52:50 +0000 (07:52 +0000)]
Fix spelling errors in code comments

8 years agoAdded more tests for issue #27122.
Serhiy Storchaka [Mon, 20 Jun 2016 02:29:54 +0000 (05:29 +0300)]
Added more tests for issue #27122.

8 years agoIssue #23641: Added __getnewargs_ex__ to the list of special mock attributes.
Serhiy Storchaka [Sun, 19 Jun 2016 15:30:43 +0000 (18:30 +0300)]
Issue #23641: Added __getnewargs_ex__ to the list of special mock attributes.

8 years agoIssue #27294: Numerical state in the repr for Tkinter event objects is now
Serhiy Storchaka [Sat, 18 Jun 2016 19:08:11 +0000 (22:08 +0300)]
Issue #27294: Numerical state in the repr for Tkinter event objects is now
represented as a compination of known flags.