Berker Peksag
|
95e0960220
|
Use setUpClass and tearDownClass correctly in test_os.
According to the documentation, they must be decorated as classmethods.
|
2015-07-21 09:30:09 +03:00 |
|
Berker Peksag
|
036a71bf25
|
Use setUpClass and tearDownClass correctly in test_os.
According to the documentation, they must be decorated as classmethods.
|
2015-07-21 09:29:48 +03:00 |
|
Terry Jan Reedy
|
5f27a5cc43
|
Merge with 3.5
|
2015-07-20 17:45:38 -04:00 |
|
Terry Jan Reedy
|
fd580cbd17
|
Merge with 3.4
|
2015-07-20 17:45:22 -04:00 |
|
Terry Jan Reedy
|
19c1a8725c
|
Issue #20792: Expand idle_test.test_pathbowser. Tweak file to not copy twice.
Original patch by Saimadhav Heblikar.
|
2015-07-20 17:44:59 -04:00 |
|
Victor Stinner
|
fd44384f33
|
Merge 3.5
|
2015-07-20 17:13:28 +02:00 |
|
Victor Stinner
|
3d0b8422bc
|
Merge 3.4
|
2015-07-20 17:13:16 +02:00 |
|
Victor Stinner
|
c0b1e0f868
|
Issue #24675: Avoid DeprecationWarning in test_os
Patch written by Martin Panter. I replace tearDown() with addCleanup().
|
2015-07-20 17:12:57 +02:00 |
|
Serhiy Storchaka
|
498b5e98e9
|
Issue #24580: Symbolic group references to open group in re patterns now are
explicitly forbidden as well as numeric group references.
|
2015-07-18 23:37:31 +03:00 |
|
Serhiy Storchaka
|
485407ce1e
|
Issue #24580: Symbolic group references to open group in re patterns now are
explicitly forbidden as well as numeric group references.
|
2015-07-18 23:27:00 +03:00 |
|
Serhiy Storchaka
|
44a5cd654d
|
Issue #24206: Fixed __eq__ and __ne__ methods of inspect classes.
|
2015-07-18 23:21:16 +03:00 |
|
Serhiy Storchaka
|
2489bd5d4e
|
Issue #24206: Fixed __eq__ and __ne__ methods of inspect classes.
|
2015-07-18 23:20:50 +03:00 |
|
Serhiy Storchaka
|
3018cc49e8
|
Issue #24206: Fixed __eq__ and __ne__ methods of inspect classes.
|
2015-07-18 23:19:05 +03:00 |
|
Steve Dower
|
6160b357b9
|
Merge with 3.5
|
2015-07-17 11:59:57 -07:00 |
|
Steve Dower
|
2d37cb2e1d
|
Fixes sys.path for applocal environments.
|
2015-07-17 11:59:21 -07:00 |
|
Robert Collins
|
eaf3ca891f
|
Typo fix in mock.patch.
Patch from https://github.com/testing-cabal/mock/issues/215
|
2015-07-17 22:00:45 +12:00 |
|
Robert Collins
|
1a80081272
|
Typo fix in mock.patch.
Patch from https://github.com/testing-cabal/mock/issues/215
|
2015-07-17 22:00:28 +12:00 |
|
Robert Collins
|
92b3e06517
|
Typo fix in mock.patch.
Patch from https://github.com/testing-cabal/mock/issues/215
|
2015-07-17 21:58:36 +12:00 |
|
Robert Collins
|
ccea2d6d99
|
Issue #21750: mock_open.read_data can now be read from each instance, as it
could in Python 3.3.
|
2015-07-17 20:10:57 +12:00 |
|
Robert Collins
|
4838717b53
|
Issue #21750: mock_open.read_data can now be read from each instance, as it
could in Python 3.3.
|
2015-07-17 20:10:23 +12:00 |
|
Robert Collins
|
5329aaa74b
|
Issue #21750: mock_open.read_data can now be read from each instance, as it
could in Python 3.3.
|
2015-07-17 20:08:45 +12:00 |
|
Victor Stinner
|
71f89216c4
|
Merge 3.5
|
2015-07-16 22:21:11 +02:00 |
|
Victor Stinner
|
8cc80f1d81
|
Merge 3.4
|
2015-07-16 22:20:19 +02:00 |
|
Victor Stinner
|
579db160b3
|
Closes #23247: Fix a crash in the StreamWriter.reset() of CJK codecs
|
2015-07-16 22:17:31 +02:00 |
|
Raymond Hettinger
|
d702044bcd
|
merge
|
2015-07-15 23:52:29 -07:00 |
|
Raymond Hettinger
|
a3626bc5bd
|
Issue #24583: Fix crash when set is mutated while being updated.
|
2015-07-15 23:50:14 -07:00 |
|
Serhiy Storchaka
|
3a22908659
|
Issue #24631: Fixed regression in the timeit modulu with multyline setup.
|
2015-07-15 22:12:33 +03:00 |
|
Serhiy Storchaka
|
ced770da07
|
Issue #24631: Fixed regression in the timeit modulu with multyline setup.
|
2015-07-15 22:11:36 +03:00 |
|
Robert Collins
|
a7282c0ff7
|
- Issue #18622: unittest.mock.mock_open().reset_mock would recurse infinitely.
Patch from Nicola Palumbo and Laurent De Buyst.
|
2015-07-15 11:51:22 +12:00 |
|
Robert Collins
|
76d508b5d4
|
- Issue #18622: unittest.mock.mock_open().reset_mock would recurse infinitely.
Patch from Nicola Palumbo and Laurent De Buyst.
|
2015-07-15 11:49:43 +12:00 |
|
Robert Collins
|
b37f43f94b
|
- Issue #18622: unittest.mock.mock_open().reset_mock would recurse infinitely.
Patch from Nicola Palumbo and Laurent De Buyst.
|
2015-07-15 11:42:28 +12:00 |
|
Robert Collins
|
f58f88c4c7
|
Issue #23661: unittest.mock side_effects can now be exceptions again.
This was a regression vs Python 3.4. Patch from Ignacio Rossi
|
2015-07-14 13:51:40 +12:00 |
|
Robert Collins
|
a3fffb0539
|
Issue #23661: unittest.mock side_effects can now be exceptions again.
This was a regression vs Python 3.4. Patch from Ignacio Rossi
|
2015-07-14 13:51:40 +12:00 |
|
Serhiy Storchaka
|
e5505175e5
|
Issue #24608: chunk.Chunk.read() now always returns bytes, not str.
|
2015-07-10 22:26:44 +03:00 |
|
Serhiy Storchaka
|
05121159b3
|
Issue #24608: chunk.Chunk.read() now always returns bytes, not str.
|
2015-07-10 22:26:08 +03:00 |
|
Serhiy Storchaka
|
d44768ff16
|
Issue #24608: chunk.Chunk.read() now always returns bytes, not str.
|
2015-07-10 22:24:47 +03:00 |
|
Serhiy Storchaka
|
16c96bb22e
|
Corrected docstrings of audio modules. writeframes() accepts bytes, not str.
|
2015-07-10 22:14:08 +03:00 |
|
Serhiy Storchaka
|
3d031e6199
|
Corrected docstrings of audio modules. writeframes() accepts bytes, not str.
|
2015-07-10 22:13:52 +03:00 |
|
Serhiy Storchaka
|
e0fd7ef6bb
|
Corrected docstrings of audio modules. writeframes() accepts bytes, not str.
|
2015-07-10 22:13:40 +03:00 |
|
Victor Stinner
|
40949e0544
|
Merge 3.5 (asyncio)
|
2015-07-09 23:16:46 +02:00 |
|
Victor Stinner
|
fb578f0a05
|
Merge 3.4 (asyncio)
|
2015-07-09 23:14:50 +02:00 |
|
Victor Stinner
|
e6ecea53c8
|
asyncio: sync with github asyncio
* queues: get coroutine from asyncio.coroutines, not from asyncio.tasks
* tets: replace tulip with asyncio in comments
|
2015-07-09 23:13:50 +02:00 |
|
Barry Warsaw
|
f5b062997b
|
- Issue #15014: SMTP.auth() and SMTP.login() now support RFC 4954's optional
initial-response argument to the SMTP AUTH command.
|
2015-07-09 10:42:37 -04:00 |
|
Barry Warsaw
|
c5ea754e48
|
- Issue #15014: SMTP.auth() and SMTP.login() now support RFC 4954's optional
initial-response argument to the SMTP AUTH command.
|
2015-07-09 10:39:55 -04:00 |
|
Serhiy Storchaka
|
d6b0c4b8a4
|
Added regression test for issue24581.
|
2015-07-08 23:02:51 +03:00 |
|
Serhiy Storchaka
|
9e7a0468ef
|
Added regression test for issue24581.
|
2015-07-08 23:02:18 +03:00 |
|
Serhiy Storchaka
|
af320b389b
|
Added regression test for issue24581.
|
2015-07-08 22:58:55 +03:00 |
|
Lars Gustäbel
|
7afe40e40e
|
Merge with 3.5: Issue #24259: tarfile now raises a ReadError if an archive is truncated inside a data segment.
|
2015-07-06 09:32:05 +02:00 |
|
Lars Gustäbel
|
e12aa62d68
|
Merge with 3.4: Issue #24259: tarfile now raises a ReadError if an archive is truncated inside a data segment.
|
2015-07-06 09:29:41 +02:00 |
|
Lars Gustäbel
|
0357268d96
|
Issue #24259: tarfile now raises a ReadError if an archive is truncated inside a data segment.
|
2015-07-06 09:27:24 +02:00 |
|