Georg Brandl
76834a1a27
Fix merging mistake: wrong Python version.
2013-10-06 11:08:57 +02:00
Georg Brandl
15d9fe7ecf
Fix wrong Python highlighting in directory hierarchy code block.
2013-10-06 11:08:24 +02:00
Georg Brandl
b2efdee890
Small clarification in extending docs.
2013-10-06 11:02:38 +02:00
Georg Brandl
cff39b0120
Use "lambda expression" as preferred to "lambda form".
2013-10-06 10:26:58 +02:00
Georg Brandl
d6d26ec908
Closes #18646 : improve lambda docs in tutorial. Original patch by Terry Reedy.
2013-10-06 10:22:45 +02:00
Georg Brandl
c5c900defb
Fix small copy-paste typo in ossaudiodev setparameters() example (found by Ken Housley on docs@).
2013-10-06 10:11:12 +02:00
Georg Brandl
c3eb868cc4
Fix some PEP8 in curses HOWTO.
2013-10-06 10:02:07 +02:00
Georg Brandl
dc801844c1
Clarify docs for os.path.getctime on Unix: it is the inode (metadata) change time
2013-10-06 09:52:55 +02:00
Georg Brandl
2b38582e76
Fix prefix_chars not being applied in help text example (reported by John Kooker on docs@)
2013-10-06 09:50:36 +02:00
Georg Brandl
05c8baa40f
Fix markup to not add parens to the "hashlib.md5" constructor when the object is meant, not the call.
2013-10-06 09:48:26 +02:00
Georg Brandl
d39c3a4d45
Fix markup.
2013-10-06 09:47:45 +02:00
Georg Brandl
baeb7f850a
Remove dead link to effbot Tkinter introduction material (reported by Ralf Ganswindt from docs@)
2013-10-06 09:32:03 +02:00
Georg Brandl
5e7f16e77e
Fix: Element.text is an attribute, not a method (report by Cameron Laird on docs@)
2013-10-06 09:23:03 +02:00
Georg Brandl
dc5f3fa85e
Fix "customer timer" -> "custom timer" (reported by Kirk Strauser on docs@)
2013-10-06 09:17:43 +02:00
Raymond Hettinger
8dc1692337
Issue 14927: Minor clean-up of function parameters in random().
2013-10-05 21:34:48 -07:00
Tim Peters
61e9ffa191
Issue #19171 : speed some cases of 3-argument long pow().
...
Reduce the base by the modulus when the base is larger than
the modulus. This can unboundedly speed the "startup costs"
of doing modular exponentiation, particularly in cases where
the base is much larger than the modulus. Original patch
by Armin Rigo, inspired by https://github.com/pyca/ed25519 .
(grafted from f34c59494420765b013136ca93f63b716d9f1d30)
2013-10-05 16:53:52 -05:00
Ezio Melotti
8f89928b5a
#19074 : mention PySide in the GUI FAQs.
2013-10-06 01:02:09 +03:00
Ezio Melotti
38386149ab
#19069 : use imperative mood in float object docstrings. Patch by Marco Buttu.
2013-10-06 00:44:32 +03:00
Ezio Melotti
eb053167a8
#19068 : use imperative mood in complex object docstrings. Patch by Marco Buttu.
2013-10-06 00:39:18 +03:00
Ezio Melotti
256735ce00
#19166 : use an unused var in a test. Patch by Vajrasky Kok.
2013-10-05 03:01:37 +03:00
Benjamin Peterson
29f0dc5f77
dict is also allowed ( closes #19163 )
2013-10-04 10:55:15 -04:00
Serhiy Storchaka
0189a46ec5
Issue #18037 : 2to3 now escapes '\u' and '\U' in native strings.
2013-10-03 12:08:22 +03:00
Ned Deily
ebca3a5ab9
Issue #19147 : Fix docstring for fcntl.flock to refer to correct man section.
2013-10-02 12:20:18 -07:00
Martin v. Löwis
6d7f7e8819
Drop buildbottouch again; the master is using "make touch" now.
2013-10-02 17:03:05 +02:00
Serhiy Storchaka
fdda200195
Issue #19137 : The pprint module now correctly formats empty set and frozenset
...
and instances of set and frozenset subclasses.
2013-10-02 11:40:26 +03:00
Barry Warsaw
3760d97f9b
2.6 merge
2013-10-01 11:39:08 -04:00
Barry Warsaw
aa914509d3
Typo caught by : Arfrever Frehtes Taifersar Arahesis.
2013-10-01 11:38:38 -04:00
Senthil Kumaran
34f7c4ee80
Minor doc fix in urlparse.rst
2013-09-30 22:10:44 -07:00
Barry Warsaw
5e0fae964b
null merge
2013-09-30 21:50:21 -04:00
Barry Warsaw
6e279eeee0
post release bump
2013-09-30 21:49:31 -04:00
Barry Warsaw
a11fafe819
2.6.9rc1 tag
2013-09-30 20:45:52 -04:00
Barry Warsaw
c1d9b2d3f5
Added tag v2.6.9rc1 for changeset a0025037f11a
2013-09-30 20:37:58 -04:00
Barry Warsaw
9bf51fefd0
Bump copyright years.
2013-09-30 20:37:45 -04:00
Barry Warsaw
be1950d059
Bump to 2.6.9rc1
2013-09-30 20:34:29 -04:00
Barry Warsaw
290df2ced8
Regenerate pydoc_topics.py
2013-09-30 20:31:56 -04:00
Barry Warsaw
d5849f545e
- Issue #16040 : CVE-2013-1752: nntplib: Limit maximum line lengths to 2048 to
...
prevent readline() calls from consuming too much memory. Patch by Jyrki
Pulliainen.
2013-09-30 19:09:29 -04:00
Barry Warsaw
42faa55124
- Issue #16040 : CVE-2013-1752: nntplib: Limit maximum line lengths to 2048 to
...
prevent readline() calls from consuming too much memory. Patch by Jyrki
Pulliainen.
2013-09-30 18:35:15 -04:00
Barry Warsaw
c038c41dc4
null merge
2013-09-30 16:46:25 -04:00
Barry Warsaw
e763a91f6a
Fix typo in NEWS file.
2013-09-30 16:45:40 -04:00
Antoine Pitrou
923852857d
Issue #12641 : Avoid passing "-mno-cygwin" to the mingw32 compiler, except when necessary.
...
Patch by Oscar Benjamin.
2013-09-30 22:13:17 +02:00
Barry Warsaw
e85f4e3174
merge heads
2013-09-30 15:58:28 -04:00
Barry Warsaw
c7708a5533
null merge
2013-09-30 15:57:29 -04:00
Barry Warsaw
c545a5ebd6
- Issue #16041 : CVE-2013-1752: poplib: Limit maximum line lengths to 2048 to
...
prevent readline() calls from consuming too much member. Patch by Jyrki
Pulliainen.
2013-09-30 15:56:29 -04:00
Antoine Pitrou
59db34e4d5
Add a "skull and crossbones" to Py_AddPendingCall.
2013-09-30 21:35:44 +02:00
Martin v. Löwis
5ddb0a30fd
Add fake buildbottouch target.
2013-09-30 16:18:31 +02:00
Senthil Kumaran
a719eed4d9
Code improvement. Review comment by Eric V. Smith
2013-09-29 18:57:42 -07:00
Barry Warsaw
ffa4987245
null merge
2013-09-29 14:01:22 -04:00
Barry Warsaw
7472b1d3ae
null merge
2013-09-29 14:00:06 -04:00
Barry Warsaw
6c1bb7b4e3
- Issue #16037 : HTTPMessage.readheaders() raises an HTTPException when more
...
than 100 headers are read. Adapted from patch by Jyrki Pulliainen.
2013-09-29 13:59:06 -04:00
Antoine Pitrou
87c99a0d37
Properly initialize all fields of a SSL object after allocation.
2013-09-29 19:52:45 +02:00