Plex plugin to to play various online streams (mostly Latvian).

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. Library
  2. -------
  3. - Issue #26323: Add Mock.assert_called() and Mock.assert_called_once()
  4. methods to unittest.mock. Patch written by Amit Saha.
  5. - Issue #22138: Fix mock.patch behavior when patching descriptors. Restore
  6. original values after patching. Patch contributed by Sean McCully.
  7. - Issue #24857: Comparing call_args to a long sequence now correctly returns a
  8. boolean result instead of raising an exception. Patch by A Kaptur.
  9. - Issue #23004: mock_open() now reads binary data correctly when the type of
  10. read_data is bytes. Initial patch by Aaron Hill.
  11. - Issue #21750: mock_open.read_data can now be read from each instance, as it
  12. could in Python 3.3.
  13. - Issue #18622: unittest.mock.mock_open().reset_mock would recurse infinitely.
  14. Patch from Nicola Palumbo and Laurent De Buyst.
  15. - Issue #23661: unittest.mock side_effects can now be exceptions again. This
  16. was a regression vs Python 3.4. Patch from Ignacio Rossi
  17. - Issue #23310: Fix MagicMock's initializer to work with __methods__, just
  18. like configure_mock(). Patch by Kasia Jachim.
  19. - Issue #23568: Add rdivmod support to MagicMock() objects.
  20. Patch by Håkan Lövdahl.
  21. - Issue #23581: Add matmul support to MagicMock. Patch by Håkan Lövdahl.
  22. - Issue #23326: Removed __ne__ implementations. Since fixing default __ne__
  23. implementation in issue #21408 they are redundant. *** NOT BACKPORTED ***
  24. - Issue #21270: We now override tuple methods in mock.call objects so that
  25. they can be used as normal call attributes.
  26. - Issue #21256: Printout of keyword args should be in deterministic order in
  27. a mock function call. This will help to write better doctests.
  28. - Issue #21262: New method assert_not_called for Mock.
  29. It raises AssertionError if the mock has been called.
  30. - Issue #21238: New keyword argument `unsafe` to Mock. It raises
  31. `AttributeError` incase of an attribute startswith assert or assret.
  32. - Issue #21239: patch.stopall() didn't work deterministically when the same
  33. name was patched more than once.
  34. - Issue #21222: Passing name keyword argument to mock.create_autospec now
  35. works.
  36. - Issue #17826: setting an iterable side_effect on a mock function created by
  37. create_autospec now works. Patch by Kushal Das.
  38. - Issue #17826: setting an iterable side_effect on a mock function created by
  39. create_autospec now works. Patch by Kushal Das.
  40. - Issue #20968: unittest.mock.MagicMock now supports division.
  41. Patch by Johannes Baiter.
  42. - Issue #20189: unittest.mock now no longer assumes that any object for
  43. which it could get an inspect.Signature is a callable written in Python.
  44. Fix courtesy of Michael Foord.
  45. - Issue #17467: add readline and readlines support to mock_open in
  46. unittest.mock.
  47. - Issue #17015: When it has a spec, a Mock object now inspects its signature
  48. when matching calls, so that arguments can be matched positionally or
  49. by name.
  50. - Issue #15323: improve failure message of Mock.assert_called_once_with
  51. - Issue #14857: fix regression in references to PEP 3135 implicit __class__
  52. closure variable (Reopens issue #12370)
  53. - Issue #14295: Add unittest.mock