1.. bpo: 24667 2.. date: 9288 3.. nonce: tdwszf 4.. release date: 2015-08-09 5.. section: Core and Builtins 6 7Resize odict in all cases that the underlying dict resizes. 8 9.. 10 11.. bpo: 24824 12.. date: 9287 13.. nonce: Eoc4lq 14.. section: Library 15 16Signatures of codecs.encode() and codecs.decode() now are compatible with 17pydoc. 18 19.. 20 21.. bpo: 24634 22.. date: 9286 23.. nonce: 7bnVgr 24.. section: Library 25 26Importing uuid should not try to load libc on Windows 27 28.. 29 30.. bpo: 24798 31.. date: 9285 32.. nonce: zDXL5R 33.. section: Library 34 35_msvccompiler.py doesn't properly support manifests 36 37.. 38 39.. bpo: 4395 40.. date: 9284 41.. nonce: JpT0k7 42.. section: Library 43 44Better testing and documentation of binary operators. Patch by Martin 45Panter. 46 47.. 48 49.. bpo: 23973 50.. date: 9283 51.. nonce: wT59Vh 52.. section: Library 53 54Update typing.py from GitHub repo. 55 56.. 57 58.. bpo: 23004 59.. date: 9282 60.. nonce: xswcPm 61.. section: Library 62 63mock_open() now reads binary data correctly when the type of read_data is 64bytes. Initial patch by Aaron Hill. 65 66.. 67 68.. bpo: 23888 69.. date: 9281 70.. nonce: 7gw4oO 71.. section: Library 72 73Handle fractional time in cookie expiry. Patch by ssh. 74 75.. 76 77.. bpo: 23652 78.. date: 9280 79.. nonce: DKQ_7t 80.. section: Library 81 82Make it possible to compile the select module against the libc headers from 83the Linux Standard Base, which do not include some EPOLL macros. Patch by 84Matt Frank. 85 86.. 87 88.. bpo: 22932 89.. date: 9279 90.. nonce: mPclSJ 91.. section: Library 92 93Fix timezones in email.utils.formatdate. Patch from Dmitry Shachnev. 94 95.. 96 97.. bpo: 23779 98.. date: 9278 99.. nonce: ET4JJP 100.. section: Library 101 102imaplib raises TypeError if authenticator tries to abort. Patch from Craig 103Holmquist. 104 105.. 106 107.. bpo: 23319 108.. date: 9277 109.. nonce: FXyUH- 110.. section: Library 111 112Fix ctypes.BigEndianStructure, swap correctly bytes. Patch written by 113Matthieu Gautier. 114 115.. 116 117.. bpo: 23254 118.. date: 9276 119.. nonce: zNiy1X 120.. section: Library 121 122Document how to close the TCPServer listening socket. Patch from Martin 123Panter. 124 125.. 126 127.. bpo: 19450 128.. date: 9275 129.. nonce: VG7T-L 130.. section: Library 131 132Update Windows and OS X installer builds to use SQLite 3.8.11. 133 134.. 135 136.. bpo: 17527 137.. date: 9274 138.. nonce: ve9fyw 139.. section: Library 140 141Add PATCH to wsgiref.validator. Patch from Luca Sbardella. 142 143.. 144 145.. bpo: 24791 146.. date: 9273 147.. nonce: Ok-3nA 148.. section: Library 149 150Fix grammar regression for call syntax: 'g(\*a or b)'. 151 152.. 153 154.. bpo: 23672 155.. date: 9272 156.. nonce: 8td2se 157.. section: IDLE 158 159Allow Idle to edit and run files with astral chars in name. Patch by Mohd 160Sanad Zaki Rizvi. 161 162.. 163 164.. bpo: 24745 165.. date: 9271 166.. nonce: edbziT 167.. section: IDLE 168 169Idle editor default font. Switch from Courier to platform-sensitive 170TkFixedFont. This should not affect current customized font selections. If 171there is a problem, edit $HOME/.idlerc/config-main.cfg and remove 'fontxxx' 172entries from [Editor Window]. Patch by Mark Roseman. 173 174.. 175 176.. bpo: 21192 177.. date: 9270 178.. nonce: CdbipH 179.. section: IDLE 180 181Idle editor. When a file is run, put its name in the restart bar. Do not 182print false prompts. Original patch by Adnan Umer. 183 184.. 185 186.. bpo: 13884 187.. date: 9269 188.. nonce: vVcO1E 189.. section: IDLE 190 191Idle menus. Remove tearoff lines. Patch by Roger Serwy. 192 193.. 194 195.. bpo: 24129 196.. date: 9268 197.. nonce: Imr54z 198.. section: Documentation 199 200Clarify the reference documentation for name resolution. This includes 201removing the assumption that readers will be familiar with the name 202resolution scheme Python used prior to the introduction of lexical scoping 203for function namespaces. Patch by Ivan Levkivskyi. 204 205.. 206 207.. bpo: 20769 208.. date: 9267 209.. nonce: ZUc9z9 210.. section: Documentation 211 212Improve reload() docs. Patch by Dorian Pula. 213 214.. 215 216.. bpo: 23589 217.. date: 9266 218.. nonce: rjU421 219.. section: Documentation 220 221Remove duplicate sentence from the FAQ. Patch by Yongzhi Pan. 222 223.. 224 225.. bpo: 24729 226.. date: 9265 227.. nonce: PH3A9p 228.. section: Documentation 229 230Correct IO tutorial to match implementation regarding encoding parameter to 231open function. 232 233.. 234 235.. bpo: 24751 236.. date: 9264 237.. nonce: pL2pbj 238.. section: Tests 239 240When running regrtest with the ``-w`` command line option, a test run is no 241longer marked as a failure if all tests succeed when re-run. 242