summaryrefslogtreecommitdiffstats
ModeNameSize
-rw-r--r--.gitattributes305logstatsplain
-rw-r--r--CMakeCPack.cmake5030logstatsplain
-rw-r--r--CMakeCPackOptions.cmake.in2971logstatsplain
-rw-r--r--CMakeGraphVizOptions.cmake153logstatsplain
-rw-r--r--CMakeLists.txt19945logstatsplain
-rw-r--r--CMakeLogo.gif4481logstatsplain
-rw-r--r--CTestConfig.cmake413logstatsplain
-rw-r--r--CTestCustom.cmake.in1792logstatsplain
-rw-r--r--CTestCustom.ctest.in145logstatsplain
-rw-r--r--ChangeLog.txt2047610logstatsplain
-rw-r--r--CompileFlags.cmake1812logstatsplain
-rw-r--r--Copyright.txt2300logstatsplain
-rw-r--r--DartConfig.cmake236logstatsplain
-rw-r--r--DartLocal.conf.in4144logstatsplain
d---------Docs129logstatsplain
d---------Example105logstatsplain
d---------Modules14547logstatsplain
-rw-r--r--Readme.txt1951logstatsplain
d---------Source23776logstatsplain
d---------Templates1024logstatsplain
d---------Tests3603logstatsplain
d---------Utilities552logstatsplain
-rwxr-xr-xbootstrap48053logstatsplain
-rw-r--r--cmake.13684logstatsplain
-rw-r--r--cmake_uninstall.cmake.in968logstatsplain
-rwxr-xr-xconfigure114logstatsplain
-rw-r--r--doxygen.config28398logstatsplain
s='logsubject'>#21940: Add unittest for WidgetRedirector. Initial patch by Saimadhav Heblikar.Terry Jan Reedy2014-07-113-13/+145 | | | * | | asyncio: sync with TulipVictor Stinner2014-07-103-18/+6 | | | | | | | | | | | | | | | | | | | | | - CoroWrapper.__del__() now reuses repr(CoroWrapper) to log the "... was never yielded from" warning - Improve CoroWrapper: copy also the qualified name on Python 3.4, not only on Python 3.5+ * | | asyncio: sync with TulipVictor Stinner2014-07-104-15/+70 | | | | | | | | | | | | | | | | | | | | | - repr(Task) and repr(CoroWrapper) now also includes where these objects were created. If the coroutine is not a generator (don't use "yield from"), use the location of the function, not the location of the coro() wrapper. - Fix create_task(): truncate the traceback to hide the call to create_task(). * | | asyncio: sync with TulipVictor Stinner2014-07-103-16/+74 | | | | | | | | | | | | | | | | | | | | | | | | - Issues #21936, #21163: Fix sporadic failures of test_future_exception_never_retrieved() - Handle.cancel() now clears references to callback and args - In debug mode, repr(Handle) now contains the location where the Handle was created. * | | Issue #21942: Fixed source file viewing in pydoc's server mode on Windows.Zachary Ware2014-07-103-10/+7 | | | * | | Issue #21940: add docstrings to idlelib.WidgetRedirector.Terry Jan Reedy2014-07-101-18/+60 | | | * | | Issues #21948 and #16040: Fix typos.Berker Peksag2014-07-092-2/+2 | | | * | | asyncion, Tulip issue 181: BaseEventLoop.create_datagram_endpoint() now waitsVictor Stinner2014-07-085-5/+28 | | | | | | | | | | | | | | | until protocol.connection_made() has been called. Document also why transport constructors use a waiter. * | | Issue #21680: Document asyncio event loopsVictor Stinner2014-07-084-88/+195 | | | * | | Update asyncio documentationVictor Stinner2014-07-084-49/+131 | | | | | | | | | | | | | | | | | | | | | | | | | | | - Document the new create_task() method - "Hide" the Task class: point to the create_task() method for interoperability - Rewrite the documentation of the Task class - Document the "Pending task destroyed" - Update output in debug mode of examples in the dev section - Replace Task() with create_task() in examples * | | asyncio: sync with TulipVictor Stinner2014-07-089-5/+63 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Tulip issue 185: Add a create_task() method to event loops. The create_task() method can be overriden in custom event loop to implement their own task class. For example, greenio and Pulsar projects use their own task class. The create_task() method is now preferred over creating directly task using the Task class. - tests: fix a warning - fix typo in the name of a test function - Update AbstractEventLoop: add new event loop methods; update also the unit test * | | Issue #11259: asynchat.async_chat().set_terminator() now raises a ValueError ifVictor Stinner2014-07-073-0/+13 | | | | | | | | | | | | the number of received bytes is negative. * | | asynchat: PEP8-ify the codeVictor Stinner2014-07-072-57/+68 | | | * | | Issue #12523: asynchat.async_chat.push() now raises a TypeError if it doesn'tVictor Stinner2014-07-073-0/+22 | | | | | | | | | | | | get a bytes string * | | Issue #21925: PyImport_Cleanup(): Remove unused parameter inVictor Stinner2014-07-071-1/+1 | | | | | | | | | | | | PySys_FormatStderr() call * | | Issue #21781, _ssl: Fix asn1obj2py() on Windows 64-bit, "s#" format requiresVictor Stinner2014-07-071-1/+1 | | | | | | | | | | | | size to be a Py_ssize_t, not an int. _ssl.c is now "Py_ssize_t clean". * | | Issue #17846: Clarify note about Solution Folders.Zachary Ware2014-07-071-2/+5 | | | | | | | | | | | | Initial patch by Kathleen Weaver. * | | Fix MSVC edition mismatch.Zachary Ware2014-07-071-1/+1 | | | * | | Issue #21707: Fix tests on Windows.Berker Peksag2014-07-071-1/+1 | | | * | | asyncio: sync with TulipVictor Stinner2014-07-072-2/+2 | | | | | | | | | | | | | | | Backout the "Tulip issue 181: Faster create_connection()" changeset, it was a mistake. * | | asyncio: sync with TulipVictor Stinner2014-07-073-4/+4 | | | | | | | | | | | | | | | | | | | | | | | | - Tulip issue #181: Faster create_connection(). Call directly waiter.set_result() in the constructor of _ProactorBasePipeTransport and _SelectorSocketTransport, instead of using of delaying the call with call_soon(). - Cleanup iscoroutine() * | | Merge headsSerhiy Storchaka2014-07-073-9/+21 |\ \ \ | * | | Issue #21707: Add missing kwonlyargcount argument to ↵Berker Peksag2014-07-073-9/+21 | | | | | | | | | | | | | | | | ModuleFinder.replace_paths_in_code(). * | | | Issue #21881: Just omit tests for platform-specific NaN representation in ↵Serhiy Storchaka2014-07-071-6/+2 |/ / / | | | | | | | | | test_tcl. * | | Issue #19593: Use specific asserts in importlib tests.Serhiy Storchaka2014-07-075-7/+7 | | | * | | Merge headsSerhiy Storchaka2014-07-07