Subject | Hash | Author | Date (UTC) |
---|---|---|---|
Fix small exception typos in Lib (#818) | 1e73dbbc29c96d0739ffef92db36f63aa1aa30da | Jim Fasarakis-Hilliard | 2017-03-26 20:59:08 |
bpo-29888: Fix the link referring to the "Python download page" (GH-824) | f8beb9831acd5cf80b9c56aea5864e16118c5400 | cocoatomo | 2017-03-26 17:32:24 |
bpo-29900: Simplify pathlib implementation. (#814) | 62a99515301fa250feba1a2e0f2d8ea2a29d700e | Serhiy Storchaka | 2017-03-25 11:42:11 |
bpo-29901: Improve support of path-like objects in zipapp. (#815) | 4aec9a8be2f2574f249008eb8be76c070fea37eb | Serhiy Storchaka | 2017-03-25 11:05:23 |
Simplify partial.__new__. (#813) | 3c749fc867f69deac75f866d5c1ba0f60e54c1fa | Serhiy Storchaka | 2017-03-25 10:10:16 |
bpo-29862: Fix grammar in importlib.reload() exception (GH-809) | 9f0aa4843f8c26937d5817f27cac4aae9c0a034f | Mandeep Bhutani | 2017-03-25 04:51:21 |
bpo-29892: Fix wrong markup on doc-lib-functions (GH-802) | 29540cdf6c66df9f806375a95078c0c63192ef78 | NAKAMURA Osamu | 2017-03-25 02:55:08 |
bpo-28810: Document remaining bytecode changes in 3.6 (GH-651) | 8f9e1bbf2dbdf46a0bf920279568a31460043376 | Ivan Levkivskyi | 2017-03-24 21:05:04 |
bpo-29894: Deprecate returning an instance of complex subclass from __complex__. (#798) | 671079ef6063fe227460a6c3114625fb6282bbd0 | Serhiy Storchaka | 2017-03-24 19:28:43 |
bpo-25803: Avoid incorrect errors raised by Path.mkdir(exist_ok=True) (#805) | af7b9ec5c855366feef4c67dc492d64b3baf84ca | Serhiy Storchaka | 2017-03-24 18:51:53 |
bpo-29861: release references to multiprocessing Pool tasks (#743) | 8988945cdc27ffa86ba8c624e095b51c459f5154 | Antoine Pitrou | 2017-03-24 12:52:11 |
bpo-19930: The mode argument of os.makedirs() no longer affects the file (#799) | e304e33c16e060932d1e2cc8a030d42b02b429b5 | Serhiy Storchaka | 2017-03-24 11:27:42 |
doc: Fix small typos in library/multiprocessing (GH-698) | 5619ab2db3a6c62ffaa55e8826cf67b7459fc484 | Sylvain Bellemare | 2017-03-24 08:26:07 |
`make tags` fixes (GH-717) | 8a543c0bc7347d5b333f334d157bf4a7cd33c14a | Alex Dzyoba | 2017-03-24 08:23:43 |
faulthandler: Restore the old sigaltstack during teardown (#777) | 20fbf8accd494fd15b0fc4c84928178c71ead4d1 | Christophe Zeitouny | 2017-03-23 17:14:29 |
Use NULL rather than 0. (#778) | 0b3ec192259a65971001ce8f0de85a9c1e71d9c7 | Serhiy Storchaka | 2017-03-23 15:53:47 |
bpo-6532: Make the thread id an unsigned integer. (#781) | aefa7ebf0ff0f73feee7ab24f4cdcb2014d83ee5 | Serhiy Storchaka | 2017-03-23 13:48:39 |
bpo-29728: Provide socket.TCP_NOTSENT_LOWAT (#477) | 1e2147b9d75a64df370a9393c2b5b9d170dc0afd | Nathaniel J. Smith | 2017-03-23 03:56:55 |
Remove an outdated statement in execution model docs (GH-754) | fad7f1560669af1766c583c7ef242c55d8c8de41 | Ivan Levkivskyi | 2017-03-23 00:54:53 |
doc: minor fix for library/profile (GH-761) | bd3d8ba3b22da0bad018b53a3e6610ae03c5aa49 | INADA Naoki | 2017-03-22 07:56:36 |
File | Lines added | Lines deleted |
---|---|---|
Lib/_pyio.py | 2 | 2 |
Lib/asyncio/windows_utils.py | 1 | 1 |
File Lib/_pyio.py changed (mode: 100644) (index 8f9397660b..5dfc1f0308) | |||
... | ... | class _BufferedIOMixin(BufferedIOBase): | |
766 | 766 | ||
767 | 767 | def flush(self): | def flush(self): |
768 | 768 | if self.closed: | if self.closed: |
769 | raise ValueError("flush of closed file") | ||
769 | raise ValueError("flush on closed file") | ||
770 | 770 | self.raw.flush() | self.raw.flush() |
771 | 771 | ||
772 | 772 | def close(self): | def close(self): |
... | ... | class BufferedWriter(_BufferedIOMixin): | |
1214 | 1214 | ||
1215 | 1215 | def _flush_unlocked(self): | def _flush_unlocked(self): |
1216 | 1216 | if self.closed: | if self.closed: |
1217 | raise ValueError("flush of closed file") | ||
1217 | raise ValueError("flush on closed file") | ||
1218 | 1218 | while self._write_buf: | while self._write_buf: |
1219 | 1219 | try: | try: |
1220 | 1220 | n = self.raw.write(self._write_buf) | n = self.raw.write(self._write_buf) |
File Lib/asyncio/windows_utils.py changed (mode: 100644) (index 7c63fb904b..d65ea1790f) | |||
... | ... | class PipeHandle: | |
149 | 149 | ||
150 | 150 | def fileno(self): | def fileno(self): |
151 | 151 | if self._handle is None: | if self._handle is None: |
152 | raise ValueError("I/O operatioon on closed pipe") | ||
152 | raise ValueError("I/O operation on closed pipe") | ||
153 | 153 | return self._handle | return self._handle |
154 | 154 | ||
155 | 155 | def close(self, *, CloseHandle=_winapi.CloseHandle): | def close(self, *, CloseHandle=_winapi.CloseHandle): |