summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Close #14085: remove assertions from PyUnicode_WRITE macroVictor Stinner2012-03-042-4/+10
| | | | | Add checks in PyUnicode_WriteChar() and convert PyUnicode_New() assertion to a test raising a Python exception.
* Fixed problem with diagnostic output.Vinay Sajip2012-03-031-1/+2
|
* - Issue #14177: marshal.loads() now raises TypeError when given an unicodeAntoine Pitrou2012-03-035-6/+15
|\ | | | | | | string. Patch by Guilherme Gonçalves.
| * Issue #14177: marshal.loads() now raises TypeError when given an unicode string.Antoine Pitrou2012-03-035-6/+15
| | | | | | | | Patch by Guilherme Gonçalves.
* | Close #13550: Remove the debug machinery from the threading module: removeVictor Stinner2012-03-032-134/+21
| | | | | | | | verbose arguments from all threading classes and functions.
* | Issue #13964: signal.sigtimedwait() timeout is now a float instead of a tupleVictor Stinner2012-03-027-20/+106
| | | | | | | | Add a private API to convert an int or float to a C timespec structure.
* | Simplify code in marshal.c.Antoine Pitrou2012-03-021-7/+1
| |
* | Issue #14172: Fix reference leak when marshalling a buffer-like object ↵Antoine Pitrou2012-03-023-4/+30
|\ \ | |/ | | | | (other than a bytes object).
| * Issue #14172: Fix reference leak when marshalling a buffer-like object ↵Antoine Pitrou2012-03-023-4/+30
| | | | | | | | (other than a bytes object).
| * merge 3.2 headsEli Bendersky2012-03-024-19/+41
| |\
* | \ Merge 3.2Eli Bendersky2012-03-021-0/+8
|\ \ \ | |/ /
| * | Issue #11379: add a note in xml.dom.minidom suggesting to use etree in some ↵Eli Bendersky2012-03-021-0/+8
| | | | | | | | | | | | cases
* | | Closes #14158: merged test file resilience fix from 3.2.Vinay Sajip2012-03-023-10/+30
|\ \ \ | | |/ | |/|
| * | Closes #14158: improved resilience to test files left behind.Vinay Sajip2012-03-023-11/+33
| | |
* | | Merge branch '3.2'Petri Lehtinen2012-03-011-8/+8
|\ \ \ | |/ / | | | | | | Issue #13491.
| * | sqlite3: Port documentation changes from the 2.7 branchPetri Lehtinen2012-03-011-8/+8
| |/ | | | | | | Issue #13491.
* | Add missing 'versionadded' for shlex.quote; closes #14165Eli Bendersky2012-03-011-0/+1
| |
* | Issue #14159: Fix the len() of weak containers (WeakSet, WeakKeyDictionary, ↵Antoine Pitrou2012-03-015-3/+115
|\ \ | |/ | | | | | | | | | | WeakValueDictionary) to return a better approximation when some objects are dead or dying. Moreover, the implementation is now O(1) rather than O(n). Thanks to Yury Selivanov for reporting.
| * Issue #14159: Fix the len() of weak containers (WeakSet, WeakKeyDictionary, ↵Antoine Pitrou2012-03-015-3/+115
| | | | | | | | | | | | | | WeakValueDictionary) to return a better approximation when some objects are dead or dying. Moreover, the implementation is now O(1) rather than O(n). Thanks to Yury Selivanov for reporting.
* | update skip reasonPhilip Jenvey2012-03-011-1/+1
| |
* | also skip test_device_encoding when stdin isn't a ttyPhilip Jenvey2012-03-011-2/+2
| |
* | Issue #14153 Create _Py_device_encoding() to prevent _io from having to importBrett Cannon2012-02-297-45/+70
| | | | | | | | the os module.
* | Issue #10181: Add warning that structure layouts in memoryobject.h andStefan Krah2012-02-291-0/+9
| | | | | | | | object.h have changed.
* | Add PyMemoryView_FromMemory() to whatsnew/3.3.Stefan Krah2012-02-292-0/+6
| |
* | Issue #14152: Merge fix from 3.2.Stefan Krah2012-02-291-1/+1
|\ \ | |/
| * Issue #14152: Restore the Include/*.h dependencies for extension builds.Stefan Krah2012-02-291-1/+1
| |
* | #14089: merge with 3.2.Ezio Melotti2012-02-291-0/+22
|\ \ | |/
| * #14089: increase coverage of the fractions module. Patch by Oleg Plakhotnyuk.Ezio Melotti2012-02-291-0/+22
| |
* | #14155: merge with 3.2.Ezio Melotti2012-02-291-52/+28
|\ \ | |/
| * #14155: remove duplication about search vs match in re doc.Ezio Melotti2012-02-291-52/+28
| |
* | #10713: merge with 3.2.Ezio Melotti2012-02-292-8/+40
|\ \ | |/
| * #10713: Improve documentation for \b and \B and add a few tests. Initial ↵Ezio Melotti2012-02-292-8/+40
| | | | | | | | patch and tests by Martin Pool.
* | Merge: Propagate changes for issues #13053 and #13086 from 2.7 to 3.2.Larry Hastings2012-02-292-26/+219
|\ \ | |/ | | | | (Doc only.)
| * Propagate changes for issues #13053 and #13086 from 2.7 to 3.2. (Doc only.)Larry Hastings2012-02-292-26/+219
| |
* | Merge: Give better failure messages in test_strptime (cf. issue #14113).Nadeem Vawda2012-02-281-8/+8
|\ \ | |/
| * Give better failure messages in test_strptime (cf. issue #14113).Nadeem Vawda2012-02-281-17/+14
| |
* | merge with 3.2Sandro Tosi2012-02-281-1/+1
|\ \ | |/
| * s/div/truediv/; thanks to Félix-Antoine Fortin from docs@Sandro Tosi2012-02-281-1/+1
| |
* | Added additional diagnostics to help with #12151.Vinay Sajip2012-02-281-0/+4
| |
* | Merged cookbook improvement from 3.2.Vinay Sajip2012-02-281-6/+11
|\ \ | |/
| * Improved logging cookbook example.Vinay Sajip2012-02-281-6/+11
| |
* | Merge with 3.2.Georg Brandl2012-02-281-4/+2
|\ \ | |/
| * Fix markup errors.Georg Brandl2012-02-281-4/+2
| |
* | Update importlib.invalidate_caches() to be more general.Brett Cannon2012-02-275-38/+62
| |
* | More debug outputAntoine Pitrou2012-02-271-2/+2
| |
* | Improve debugging output for test failureAntoine Pitrou2012-02-271-1/+1
| |
* | Issue #13125: Silence spurious test_lib2to3 output when in non-verbose mode.Antoine Pitrou2012-02-273-3/+14
|\ \ | |/ | | | | Patch by Mikhail Novikov.
| * Issue #13125: Silence spurious test_lib2to3 output when in non-verbose mode.Antoine Pitrou2012-02-273-3/+14
| | | | | | | | Patch by Mikhail Novikov.
* | Some corrections for the Doc/extending documentation. Closes #14129Eli Bendersky2012-02-273-45/+23
| |
* | Null merge (fix is already in 3.3).Stefan Krah2012-02-270-0/+0
|\ \ | |/