summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
Commit message (Expand)AuthorAgeFilesLines
...
* | Issue #21323: Fix http.server to again handle scripts in CGI subdirectories,Ned Deily2014-07-131-0/+3
|\ \ | |/
| * Issue #21323: Fix http.server to again handle scripts in CGI subdirectories,Ned Deily2014-07-131-1/+4
| |\
| | * Issue #21323: Fix http.server to again handle scripts in CGI subdirectories,Ned Deily2014-07-131-0/+3
| | |\
| | | * Issue #21323: Fix http.server to again handle scripts in CGI subdirectories,Ned Deily2014-07-131-0/+3
* | | | Issue #21966: Respect -q command-line option when code module is ran.Alexander Belopolsky2014-07-121-0/+2
* | | | Issue #19076: Merge with 3.4.Berker Peksag2014-07-121-0/+2
|\ \ \ \ | |/ / /
| * | | Issue #19076: Don't pass the redundant 'file' argument to self.error().Berker Peksag2014-07-121-0/+2
* | | | Issue #21906: Merge from 3.4.Berker Peksag2014-07-111-0/+3
|\ \ \ \ | |/ / /
| * | | Issue #21906: Make Tools/scripts/md5sum.py work in Python 3.Berker Peksag2014-07-111-1/+4
* | | | Issue #16382: Improve exception message of warnings.warn() for bad category.Berker Peksag2014-07-111-0/+3
* | | | Issue #21932: os.read() now uses a :c:func:`Py_ssize_t` type instead ofVictor Stinner2014-07-111-0/+5
* | | | News entriesTerry Jan Reedy2014-07-111-0/+7
|\ \ \ \ | |/ / /
| * | | Idle News entries.Terry Jan Reedy2014-07-111-0/+7
* | | | Issue #21942: Fixed source file viewing in pydoc's server mode on Windows.Zachary Ware2014-07-101-0/+2
|\ \ \ \ | |/ / /
| * | | Issue #21942: Fixed source file viewing in pydoc's server mode on Windows.Zachary Ware2014-07-101-0/+2
* | | | (Merge 3.4) Issue #11259: asynchat.async_chat().set_terminator() now raises aVictor Stinner2014-07-071-0/+3
|\ \ \ \ | |/ / /
| * | | Issue #11259: asynchat.async_chat().set_terminator() now raises a ValueError ifVictor Stinner2014-07-071-0/+3
* | | | (Merge 3.4) Issue #12523: asynchat.async_chat.push() now raises a TypeError ifVictor Stinner2014-07-071-0/+3
|\ \ \ \ | |/ / /
| * | | Issue #12523: asynchat.async_chat.push() now raises a TypeError if it doesn'tVictor Stinner2014-07-071-0/+3
* | | | Issue #21907: Improved the batch scripts provided for building Python.Zachary Ware2014-07-071-0/+2
* | | | Issue #21707: Merge with 3.4.Berker Peksag2014-07-071-0/+3
|\ \ \ \ | |/ / /
| * | | Issue #21707: Add missing kwonlyargcount argument to ModuleFinder.replace_pa...Berker Peksag2014-07-071-0/+3
* | | | Merge pathlib fixesAntoine Pitrou2014-07-071-0/+6
|\ \ \ \ | |/ / /
| * | | Issue #20639: calling Path.with_suffix('') allows removing the suffix again.Antoine Pitrou2014-07-071-0/+3
| * | | Issue #21714: Disallow the construction of invalid paths using Path.with_name...Antoine Pitrou2014-07-071-0/+3
* | | | Issue #21923: merge from 3.4Ned Deily2014-07-061-0/+2
|\ \ \ \ | |/ / /
| * | | Issue #21923: Prevent AttributeError in distutils.sysconfig.customize_compilerNed Deily2014-07-061-0/+3
* | | | upgrade to unicode 7.0.0Benjamin Peterson2014-07-061-0/+2
* | | | Issue #9554: Use modern unittest features in test_argparse.Berker Peksag2014-07-061-0/+3
* | | | Issue #21897: Fix a crash with the f_locals attribute with closure variables ...Antoine Pitrou2014-07-051-0/+3
|\ \ \ \ | |/ / /
| * | | Issue #21897: Fix a crash with the f_locals attribute with closure variables ...Antoine Pitrou2014-07-051-0/+3
* | | | #15014: Add 'auth' command to implement auth mechanisms and use it in login.R David Murray2014-07-031-0/+3
* | | | Closes #21151: Merge with 3.4Zachary Ware2014-07-031-0/+3
|\ \ \ \ | |/ / /
| * | | Issue #21151: Fixed a segfault in the winreg module.Zachary Ware2014-07-031-0/+3
* | | | (Merge 3.4) Issue #21090: io.FileIO.readall() does not ignore I/O errorsVictor Stinner2014-07-021-0/+3
|\ \ \ \ | |/ / /
| * | | Issue #21090: io.FileIO.readall() does not ignore I/O errors anymore. Before,Victor Stinner2014-07-021-0/+3
* | | | Issue #5800: headers parameter of wsgiref.headers.Headers is now optional.Berker Peksag2014-07-021-0/+3
* | | | (Merge 3.4) Issue #21781: Make the ssl module "ssize_t clean" for parsingVictor Stinner2014-07-011-0/+2
|\ \ \ \ | |/ / /
| * | | Issue #21781: Make the ssl module "ssize_t clean" for parsing parameters.Victor Stinner2014-07-011-0/+2
* | | | Issue #21811: Add Misc/NEWS entry.Ned Deily2014-06-301-0/+2
|\ \ \ \ | |/ / /
| * | | Issue #21811: Add Misc/NEWS entry.Ned Deily2014-06-301-0/+2
* | | | Issue #21679: Prevent extraneous fstat() calls during open(). Patch by Bohus...Antoine Pitrou2014-06-301-0/+3
* | | | Issue #21863: cProfile now displays the module name of C extension functions,...Antoine Pitrou2014-06-281-0/+3
* | | | (Merge 3.4) Issue #11453: asyncore: emit a ResourceWarning when an unclosedVictor Stinner2014-06-271-0/+4
|\ \ \ \ | |/ / /
| * | | Issue #11453: asyncore: emit a ResourceWarning when an unclosed file_wrapperVictor Stinner2014-06-271-0/+4
* | | | (Merge 3.4) Issue #21858: Better handling of Python exceptions in the sqlite3Victor Stinner2014-06-261-0/+2
|\ \ \ \ | |/ / /
| * | | Issue #21858: Better handling of Python exceptions in the sqlite3 module.Victor Stinner2014-06-261-0/+2
* | | | Merge #21476: Unwrap fp in BytesParser so the file isn't unexpectedly closed.R David Murray2014-06-261-0/+3
|\ \ \ \ | |/ / /
| * | | #21476: Unwrap fp in BytesParser so the file isn't unexpectedly closed.R David Murray2014-06-261-0/+3
* | | | #20295: Teach imghdr to recognize OpenEXR format images.R David Murray2014-06-261-0/+2