Andrew Svetlov
69f343941f
Issue #15041 : update "see also" list in tkinter documentation.
14 years ago
Andrew Svetlov
e708a8a4aa
Issue #15041 : update "see also" list in tkinter documentation.
14 years ago
Antoine Pitrou
0b9e7b9ea9
Issue #15320 : Make iterating the list of tests thread-safe when running tests in multiprocess mode.
Patch by Chris Jerdonek.
14 years ago
Antoine Pitrou
09f2e6f902
Issue #15320 : Make iterating the list of tests thread-safe when running tests in multiprocess mode.
Patch by Chris Jerdonek.
14 years ago
Antoine Pitrou
c5618f039d
Mention the *limit* argument of TextIO.readline().
14 years ago
Antoine Pitrou
707bd4e385
Mention the *limit* argument of TextIO.readline().
14 years ago
Vinay Sajip
f7dbb0f64e
Closes #15445 : Merged documentation update from 3.2.
14 years ago
Vinay Sajip
393e23fbb5
Issue #15445 : Updated logging configuration documentation to highlight potential security risk posed by listen() in certain scenarios.
14 years ago
Martin v. Löwis
099414875b
merge 3.2
14 years ago
Martin v. Löwis
30d5e6c13f
Issue #7163 : Propagate return value of sys.stdout.write.
Patch by Roger Serwy.
14 years ago
Martin v. Löwis
f4b341b0e6
merge 3.2
14 years ago
Martin v. Löwis
c882b7c51a
Issue #15318 : Prevent writing to sys.stdin.
Patch by Roger Serwy and myself.
14 years ago
Antoine Pitrou
f3923e9dd7
Issue #15413 : os.times() had disappeared under Windows.
14 years ago
R David Murray
4c66896553
#15232 : make NEWS entry more accurate.
14 years ago
R David Murray
186396dce6
#15232 : make NEWS entry more accurate.
14 years ago
Eli Bendersky
f7a54a0f12
Cleanup the doc a bit: remove useless example and sentence
14 years ago
Eli Bendersky
c43c558658
Issue #15321 : update PyPI upload doc to say --no-raw passed to rst2html.py. Patch by Chris Jerdonek
14 years ago
Eli Bendersky
e431ed2354
Clarify what happens if shallow is false. Also, the caching note is not really correct since the cache gets occasionally cleared; therefore I removed it.
14 years ago
Ned Deily
c59cc8f5ea
Issue #14197 : merge
14 years ago
Ned Deily
ecd4e9de5a
Issue #14197 : For OS X framework builds, ensure links to the shared
library are created with the proper ABI suffix.
14 years ago
Jesus Cea
e9f35cc149
MERGE: Rollback an incorrect Doc/ACKS.txt entry
14 years ago
Jesus Cea
55624da8a8
Rollback an incorrect Doc/ACKS.txt entry
14 years ago
Jesus Cea
653e4b30e3
MERGE: Better test for Issue #15402 : Add a __sizeof__ method to struct.Struct
14 years ago
Jesus Cea
189fdf187b
Better test for Issue #15402 : Add a __sizeof__ method to struct.Struct
14 years ago
Meador Inge
9f65899d19
Issue #15402 : Add a __sizeof__ method to struct.Struct.
Initial patch by Serhiy Storchaka.
14 years ago
Meador Inge
b14d8c9bcf
Issue #15402 : Add a __sizeof__ method to struct.Struct.
Initial patch by Serhiy Storchaka.
14 years ago
Meador Inge
fe114f0293
Putting the 3.2 -> default merge info in a happy place.
14 years ago
Raymond Hettinger
d3f63d3661
Simplify the LaTeX section (only three escapes are needed for alltt)
14 years ago
Senthil Kumaran
7e918cfe28
merge heads.
14 years ago
Senthil Kumaran
392bfd30af
merge heads.
14 years ago
Senthil Kumaran
d74062948d
- Issue #15250 : Document that filecmp.dircmp compares files shallowly. Patch contributed by Chris Jerdonek.
14 years ago
Senthil Kumaran
28a9f2193a
- Issue #15250 : Document that filecmp.dircmp compares files shallowly. Patch contributed by Chris Jerdonek.
14 years ago
R David Murray
970bef295d
Merge #15232 : correctly mangle From lines in MIME preamble and epilogue
14 years ago
R David Murray
6a31bc6d81
#15232 : correctly mangle From lines in MIME preamble and epilogue
14 years ago
R David Murray
4fb6b0a104
Merge #15429 : Fix invalid mention of types.NoneType from None docs.
14 years ago
R David Murray
e60e12b57a
#15429 : Fix invalid mention of types.NoneType from None docs.
14 years ago
Andrew Svetlov
80823d7ed7
#15094 : fix incorrectly placed #endif in _tkinter.c.
Patch by Serhiy Storchaka.
14 years ago
Ned Deily
c7a5a76b1e
Issue #15184 : Some config variables in test_sysconfig_module
may differ between sysconfig and distutils.sysconfig due to
compiler customizations on OS X. For now, move those vars
into a separate test and skip if the customization has taken
place in distutils. The long-term solution is to eliminate
having two sysconfig modules.
14 years ago
Ned Deily
2c80e120a9
Issue #15188 : Prevent test_ldshared_value failure due to slightly
different parsing of the Makefile by distutils.sysconfig and
sysconfig in the case when an intermediate config vars, used to
construct PY_CFLAGS or PY_LDFLAGS, has a trailing space character.
In this case, the OS X installer build script was leaving a
trailing space in the OPT and LDFLAGS config vars. The space is not
significant and it's not worth toying with the Makefile parsing.
14 years ago
Ned Deily
1ef871969c
Issue #15184 : Fix test__remove_unsupported_archs failures on 10.6
by removing unwarranted assumptions that clang compiler chain
cannot handle ppc (the driver passes off ppc compiles to gcc).
Mock the behavior instead.
14 years ago
Gregory P. Smith
34fcafde16
Consistently raise a TypeError when a non str is passed to hashlib.new
regardless of which of the two implementations of new is used.
14 years ago
Gregory P. Smith
76c28f7ce2
Consistently raise a TypeError when a non str is passed to hashlib.new
regardless of which of the two implementations of new is used.
14 years ago
R David Murray
45ccf032be
Merge #13922 : argparse no longer incorrectly strips '--' after the first one.
Patch by Jeff Knupp.
14 years ago
R David Murray
00528e8fec
#13922 : argparse no longer incorrectly strips '--' after the first one.
Patch by Jeff Knupp.
14 years ago
R David Murray
d4703d1d85
Merge #12353 : argparse now correctly handles null argument values.
Patch by Torsten Landschoff.
14 years ago
R David Murray
b94082a71b
#12353 : argparse now correctly handles null argument values.
Patch by Torsten Landschoff.
14 years ago
R David Murray
af418b2232
Merge #14391 : clarify docstring discussion of Action's 'type' argument's value.
14 years ago
R David Murray
15cd9a0be4
#14391 : clarify docstring discussion of Action's 'type' argument's value.
14 years ago
R David Murray
779b63d005
Merge #15342 : Add clarifying sentence to posixpath.join docstring.
This sentence appears as a clarifying note in the HTML docs, and seems
worth having in the docstring since it covers a very common use case
that isn't otherwise obvious. Thanks to Yongzhi Pan for the suggestion.
14 years ago
R David Murray
e3de175a5e
#15342 : Add clarifying sentence to posixpath.join docstring.
This sentence appears as a clarifying note in the HTML docs, and seems
worth having in the docstring since it covers a very common use case
that isn't otherwise obvious. Thanks to Yongzhi Pan for the suggestion.
14 years ago