Commit Graph

77278 Commits

Author SHA1 Message Date
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
Richard Oudkerk c54960723f Issue #19112: avoid using function defined in method. 2013-09-29 17:10:40 +01:00
Benjamin Peterson 61f901c882 remove duplicate method (closes #19127) 2013-09-29 11:15:31 -04:00
Benjamin Peterson 0e234e60e6 condense two tests with the same name (closes #19114) 2013-09-29 11:13:27 -04:00
Benjamin Peterson f20cf944ab move helper function into its test method (closes #19112) 2013-09-29 11:08:04 -04:00
Antoine Pitrou 0879b168bf Issue #4366: Fix building extensions on all platforms when --enable-shared is used. 2013-09-29 01:48:40 +02:00
Benjamin Peterson a094f04e7b fix duplicate test names (closes #19115)
Patch by Xavier de Gaye.
2013-09-28 15:12:37 -04:00
Serhiy Storchaka cfa5574405 Issue #18950: Fix miscellaneous bugs in the sunau module.
Au_read.readframes() now updates current file position and reads correct
number of frames from multichannel stream.  Au_write.writeframesraw() now
correctly updates current file position.  Au_read and Au_write now correctly
work with file object if start file position is not a zero.
2013-09-28 21:31:36 +03:00
Barry Warsaw d9836ebced null merge 2013-09-25 10:42:27 -04:00
Barry Warsaw d6fddf3d15 - Issue #16038: CVE-2013-1752: ftplib: Limit amount of data read by
limiting the call to readline().  Original patch by Michał
  Jastrzębski and Giampaolo Rodola.

with test fixes by Serhiy Storchaka.
2013-09-25 09:36:58 -04:00
Barry Warsaw 212f4b767b null merge 2013-09-22 16:26:09 -04:00