summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue #16012: Fix a regression in pyexpat. The parser's UseForeignDTD()Christian Heimes2012-09-243-1/+14
|\ | | | | | | method doesn't require an argument again.
| * Issue #16012: Fix a regression in pyexpat. The parser's UseForeignDTD()Christian Heimes2012-09-243-1/+14
| | | | | | | | method doesn't require an argument again.
* | Merge with 3.3.0 release clone.Georg Brandl2012-09-247-29/+54
|\ \
| * | Post-release updates.Georg Brandl2012-09-242-1/+13
| | |
| * | Added tag v3.3.0rc3 for changeset c191d21cefafGeorg Brandl2012-09-231-0/+1
| | |
| * | Bump to 3.3.0rc3.v3.3.0rc3Georg Brandl2012-09-236-9/+9
| | |
| * | Add news entries for recent changes.Georg Brandl2012-09-231-0/+3
| | |
| * | GCC doesn't support typeof in strict ansi mode (e.g. -ansi or -std=c89)Christian Heimes2012-09-231-1/+1
| | |
| * | Use C-style comments for C89 / ANSI C compatibilityChristian Heimes2012-09-231-1/+1
| | |
| * | Use C-style comments (required for the AIX build slave).Stefan Krah2012-09-231-2/+2
| | |
| * | Use C-style comments.Stefan Krah2012-09-231-24/+24
| | |
| * | Fixed reference leak in error branch of _bufferedreader_read_all(). The ↵Christian Heimes2012-09-101-1/+3
| | | | | | | | | | | | variable data can contain a bytes object but it wasn't cleaned up when PyList_New() failed. CID 715364
| * | Fixed memory leak in error branch of formatfloat(). CID 719687Christian Heimes2012-09-101-1/+3
| | |
| * | Fix issue number.Georg Brandl2012-09-231-1/+1
| | |
| * | Cleanup/rewrite shutil docs regarding follow_symlinks and copying attributes.Larry Hastings2012-09-211-31/+84
| | |
| * | Mention that "defaults" can be None for inspect.getfullargspec.Larry Hastings2012-09-211-5/+6
| | | | | | | | | | | | Also minor formatting cleanups.
| * | Add What's New entries for some minor work I did in 3.3.Larry Hastings2012-09-211-1/+12
| | |
| * | Fixed out-of-bounce write to rawmode buffer. The fixed size buffer wasn't ↵Christian Heimes2012-09-101-1/+1
| | | | | | | | | | | | enlarged for the new 'x' flag. The buffer may contain the 5 flags xrwa+ and the \0 byte
| * | Issue #15900: Fixed reference leak in PyUnicode_TranslateCharmap()Christian Heimes2012-09-112-6/+7
| | |
| * | Closes #15973: fix a segmentation fault when comparing timezone objects.Georg Brandl2012-09-224-0/+13
| | |
| * | Issue #15926: Fix crash after multiple reinitializations of the interpreter.Antoine Pitrou2012-09-122-1/+3
| | |
| * | Closes #15925: fix regression in parsedate() and parsedate_tz() that should ↵Georg Brandl2012-09-224-24/+21
| | | | | | | | | | | | return None if unable to parse the argument.
| * | Closes #15969: rename new API to have consistent names in the faulthandler ↵Georg Brandl2012-09-224-37/+41
| | | | | | | | | | | | module.
| * | Fix NEWS entry location.Georg Brandl2012-09-221-4/+7
| | |
| * | Issue #15977: Fix memory leak in Modules/_ssl.c when the function ↵Christian Heimes2012-09-202-0/+10
| | | | | | | | | | | | _set_npn_protocols() is called multiple times
| * | Spacing fix.Georg Brandl2012-09-221-0/+1
| | |
| * | Issue #15882: Change _decimal to accept any coefficient tuple whenStefan Krah2012-09-103-7/+21
| | | | | | | | | | | | | | | | | | constructing infinities. This is done for backwards compatibility with decimal.py: Infinity coefficients are undefined in _decimal (in accordance with the specification).
| * | Updates NEWS for issue #15895Christian Heimes2012-09-111-1/+5
| | |
| * | Issue #15895: my analysis was slightly off. The FILE pointer is only leaked ↵Christian Heimes2012-09-111-8/+6
| | | | | | | | | | | | when set_main_loader() fails for a pyc file with closeit=0. In the success case run_pyc_file() does its own cleanup of the fp. I've changed the code to use another FILE ptr for pyc files and moved the fclose() to PyRun_SimpleFileExFlags() to make it more obvious what's happening.
| * | Issue #15895: Fix FILE pointer leak in PyRun_SimpleFileExFlags() when ↵Christian Heimes2012-09-111-1/+5
| | | | | | | | | | | | filename points to a pyc/pyo file and closeit is false.
* | | Issue #15379: Fix passing of non-BMP characters as integers for the charmap ↵Antoine Pitrou2012-09-233-3/+123
|\ \ \ | | |/ | |/| | | | | | | | | | decoder (already working as unicode strings). Patch by Serhiy Storchaka.
| * | Issue #15379: Fix passing of non-BMP characters as integers for the charmap ↵Antoine Pitrou2012-09-234-3/+135
| | | | | | | | | | | | | | | | | | decoder (already working as unicode strings). Patch by Serhiy Storchaka.
* | | Prefer lzma.open() over lzma.LZMAFile() in lzma module documentation.Nadeem Vawda2012-09-231-4/+4
| | |
* | | Fix indentation of examples in lzma module documentation.Nadeem Vawda2012-09-231-2/+2
| | |
* | | GCC doesn't support typeof in strict ansi mode (e.g. -ansi or -std=c89)Christian Heimes2012-09-231-1/+1
| | |
* | | Use C-style comments for C89 / ANSI C compatibilityChristian Heimes2012-09-231-1/+1
| | |
* | | Use C-style comments (required for the AIX build slave).Stefan Krah2012-09-231-2/+2
| | |
* | | Use C-style comments.Stefan Krah2012-09-231-24/+24
| | |
* | | #15949, #15899: merge with 3.2.Ezio Melotti2012-09-231-2/+2
|\ \ \ | |/ /
| * | #15949, #15899: use \ufffd instead of ?.Ezio Melotti2012-09-231-2/+2
| | |
* | | Issue #15969: Fix the issue number in Misc/NEWSVictor Stinner2012-09-231-1/+1
| | |
* | | Issue #5969: faulthandler module: rename dump_tracebacks_later() toVictor Stinner2012-09-234-37/+40
| | | | | | | | | | | | | | | dump_traceback_later() and cancel_dump_tracebacks_later() to cancel_dump_traceback_later().
* | | #15925: fix regression: return None for null and non-date strings.R David Murray2012-09-224-24/+20
| | | | | | | | | | | | | | | | | | Since the logic for null detection had to move into the _parseaddr functions, I removed the wrappers from email.utils and just import the _parseaddr functions directly.
* | | #15949, 15899: merge with 3.2.Ezio Melotti2012-09-221-2/+2
|\ \ \ | |/ /
| * | #15949, 15899: avoid using non-latin1 chars in the doc (they break `make ↵Ezio Melotti2012-09-221-2/+2
| | | | | | | | | | | | all-pdf`).
* | | Cleanup/rewrite shutil docs regarding follow_symlinks and copying attributes.Larry Hastings2012-09-211-31/+84
| | |
* | | Mention that "defaults" can be None for inspect.getfullargspec.Larry Hastings2012-09-211-5/+6
| | | | | | | | | | | | Also minor formatting cleanups.
* | | Add What's New entries for some minor work I did in 3.3.Larry Hastings2012-09-211-1/+12
| | |
* | | #15421: merge with 3.2.Ezio Melotti2012-09-213-1/+14
|\ \ \ | |/ /
| * | #15421: fix an OverflowError in Calendar.itermonthdates() after ↵Ezio Melotti2012-09-213-1/+14
| | | | | | | | | | | | datetime.MAXYEAR. Patch by Cédric Krier.