Georg Brandl
e8ea355b72
Closes #21687 : delimiter in Py_SetPath is platform dependent
12 years ago
Georg Brandl
c5dd095a9b
Closes #21675 : fix ordering of description in library intro
12 years ago
Benjamin Peterson
682124ccc3
prevent passing NULL to memcpy ( closes #22605 )
Patch by Jakub Wilk.
12 years ago
Terry Jan Reedy
ad0c57fed8
Issue #21986 : Idle now matches interpreter in not pickling user code objects.
Patch by Claudiu Popa
12 years ago
Antoine Pitrou
9086f9260f
Issue #22604 : Fix assertion error in debug mode when dividing a complex number by (nan+0j).
12 years ago
Zachary Ware
a13dab47cb
Issue #15414 : Clean and correct the os.path.join docs.
In particular, correctly describe the behavior of ntpath.join.
Based on a patch by Dave Sawyer.
12 years ago
Terry Jan Reedy
64138c438c
Issue 22603: add Francisco Fernández Castaño to ACKS.
12 years ago
Terry Jan Reedy
f9bd920cfa
Issue 22603: add missing 'self'. Patch by Francisco Fernández Castaño.
12 years ago
Petri Lehtinen
3894b2a24f
Issue #11694 : Raise ConversionError in xdrlib as documented
12 years ago
Victor Stinner
866c4e2188
test_venv: use support.rmtree() instead of shutil.rmtree() to fix sporadic
failures on Windows
12 years ago
Berker Peksag
b77983d2bd
Issue #21456 : Skip two tests in test_urllib2net.py if _ssl module not present.
Patch by Remi Pointel.
12 years ago
Victor Stinner
cfb2a0a855
Issue #22564 : ssl doc: mention asyncio in the non-blocking section
12 years ago
Victor Stinner
d28fe8c8f4
Issue #22564 : ssl doc: mention how SSLSocket are usually created
12 years ago
Victor Stinner
3c3d3c73f3
Issue #22564 : ssl doc: use "class" marker to document the SSLSocket class
12 years ago
Victor Stinner
41f92c2818
Issue #22564 : ssl doc: document read(), write(), pending, server_side and
server_hostname methods and attributes of SSLSocket.
12 years ago
Victor Stinner
851a6cc071
Issue #22564 : ssl doc: fix typos
12 years ago
Terry Jan Reedy
4fe69ba01c
Issue #20167 : revise condition to accomodate message change.
12 years ago
R David Murray
5f16f90d1b
#18176 : Change generic UCD PropList link to version specific link.
12 years ago
Terry Jan Reedy
867579972d
De-'colour'ize stdlib except for idlelib.configDialog.
Tweak docstrigs and comments in affected functions in idlelib.configHandler.
12 years ago
R David Murray
5bd62420f4
#18176 : fix another reference and add it to the makeunicodedata comment.
12 years ago
R David Murray
7445a383a6
#18176 : updated stdtypes UCD link, added reminder to makeunicodedata.
Patch by Alexander Belopolsky.
12 years ago
Victor Stinner
fc6a90a92e
Issue #22588 : Fix typo in _testcapi.test_incref_decref_API()
12 years ago
Victor Stinner
484df0075a
Issue #22568 : Fix compilation of posixmodule.c with Open Watcom: rename "utime"
variable to "ut" to avoid conflict with the C utime() function. Patch written
by Jeffrey Armstrong.
12 years ago
Victor Stinner
13d3aa502d
Closes #22580 : Fix documentation of PyUnicode_Tailmatch()
The result type is Py_ssize_t (and not int).
12 years ago
Terry Jan Reedy
92cb0a361f
Issue 3068: Move idlelib.configDialog action button creation into a separate
method so it can be reused by the new extension dialog.
12 years ago
Serhiy Storchaka
e2bd2a7186
Issue #21715 : Extracted shared complicated code in the _io module to new
_PyErr_ChainExceptions() function.
12 years ago
Antoine Pitrou
0ddbf4795f
Issue #22462 : Fix pyexpat's creation of a dummy frame to make it appear in exception tracebacks.
Initial patch by Mark Shannon.
12 years ago
Berker Peksag
b2fdafe3d2
Issue #22576 : Fix signatures of FTP.storbinary() and FTP.storlines() methods.
The correct parameter name is "fp", not "file".
12 years ago
Larry Hastings
2ce95d7b7c
Merge from 3.4.2 release head back into 3.4 mainline.
12 years ago
Larry Hastings
adeb140cb3
Post-release changes after 3.4.2 final.
12 years ago
Terry Jan Reedy
deb7bf123c
idlelib.configHandler: revise docstrings, add spaces, use False/True, add some
TODOs (mostly to do after add tests), and make a few other changes.
12 years ago
Benjamin Peterson
57fb11b255
use source role instead of linking to svn
12 years ago
Georg Brandl
9205e9ebdc
Closes #16155 : fix a few errors in doctest output of the FAQ pages.
12 years ago
Georg Brandl
7fa4a8f15a
Closes #12148 : clarify "or's together option flags" in doctest docs.
12 years ago
Georg Brandl
4dd27a3edb
Closes #21782 : the default hash(x) is not exactly id(x) but derived from it.
12 years ago
Georg Brandl
a94ad1e508
Closes #10031 : overhaul the "imports" section of the programming FAQ.
Remove the advice to never use relative imports; it is a leftover from 2.x implicit relative imports.
Remove the advice to locally import modules in __init__, it is a strange practice.
Remove the advice to use "from ... import *" with some modules.
12 years ago
Georg Brandl
2a3e396b24
Closes #21480 : better explanation of "hg touch" in the Makefile.
12 years ago
Georg Brandl
f6d6dc2e36
Clean up the docs of PyObject_IsSubclass and PyObject_IsInstance, and mention that they call the PEP 3119 methods.
12 years ago
Georg Brandl
a920b6d762
Closes #22507 : document that PyType_IsSubtype does not call __subclasscheck__.
12 years ago
Georg Brandl
eb7e8f607e
Document builtin classes as such, not functions.
12 years ago
Georg Brandl
97435166aa
Closes #22565 : fix argument types of PyErr_WarnEx.
12 years ago
Terry Jan Reedy
c6ad57608b
Issue #22546 : update doc for mini-language float None presentation type.
12 years ago
Larry Hastings
1123aa26c8
Added tag v3.4.2 for changeset ab2c023a9432
12 years ago
Larry Hastings
dbb126103e
Release bump for 3.4.2 final.
12 years ago
Larry Hastings
c6256e5f7d
Update pydoc topics and fix supsicious markup for 3.4.2 final.
12 years ago
Benjamin Peterson
1c262a6c75
PyObject not PyType ( closes #18494 )
12 years ago
Antoine Pitrou
1bf974dc6e
Closes #21173 : Fix len() on a WeakKeyDictionary when .clear() was called with an iterator alive.
12 years ago
Victor Stinner
bed04a77ee
cleanup test_posix
12 years ago
Victor Stinner
047b7ae566
Issue #22390 : Remove files created by tests
12 years ago
Victor Stinner
8f437aac06
Issue #22290 : Fix error handling in the _posixsubprocess module.
* Don't call the garbage collector with an exception set: it causes an
assertion to fail in debug mode.
* Enhance also error handling if allocating an array for the executable list
failed.
* Add an unit test for 4 different errors in the _posixsubprocess module.
12 years ago