]> granicus.if.org Git - python/log
python
12 years agoAdded tag v2.6.8rc2 for changeset bd9e1a02e3e3
Barry Warsaw [Sat, 17 Mar 2012 22:34:05 +0000 (18:34 -0400)]
Added tag v2.6.8rc2 for changeset bd9e1a02e3e3

12 years agoAdded tag v2.6.8rc2 for changeset 1d1b7b9fad48
Barry Warsaw [Sat, 17 Mar 2012 22:19:42 +0000 (18:19 -0400)]
Added tag v2.6.8rc2 for changeset 1d1b7b9fad48

12 years agoBump to 2.6.8rc2 v2.6.8rc2
Barry Warsaw [Sat, 17 Mar 2012 22:19:15 +0000 (18:19 -0400)]
Bump to 2.6.8rc2

12 years agoUpdate Docs and NEWS for 2.6.8rc2.
Barry Warsaw [Sat, 17 Mar 2012 22:16:58 +0000 (18:16 -0400)]
Update Docs and NEWS for 2.6.8rc2.

12 years ago- Issue #14234: CVE-2012-0876: Randomize hashes of xml attributes in the hash
Barry Warsaw [Thu, 15 Mar 2012 00:10:41 +0000 (17:10 -0700)]
- Issue #14234: CVE-2012-0876: Randomize hashes of xml attributes in the hash
  table internal to the pyexpat module's copy of the expat library to avoid a
  denial of service due to hash collisions.  Patch by David Malcolm with some
  modifications by the expat project.

12 years agoAdded tag v2.6.8rc1 for changeset 5356b6c7fd66
Barry Warsaw [Thu, 23 Feb 2012 16:10:31 +0000 (11:10 -0500)]
Added tag v2.6.8rc1 for changeset 5356b6c7fd66

12 years agoAdded tag v2.6.8rc1 for changeset caab08cd2b3e
Barry Warsaw [Thu, 23 Feb 2012 15:59:50 +0000 (10:59 -0500)]
Added tag v2.6.8rc1 for changeset caab08cd2b3e

12 years agoBump some more copyright years (as per PEP 101), since this is the first v2.6.8rc1
Barry Warsaw [Thu, 23 Feb 2012 15:59:38 +0000 (10:59 -0500)]
Bump some more copyright years (as per PEP 101), since this is the first
release of 2.6 for 2012.

12 years agoBump to version 2.6.8rc1.
Barry Warsaw [Thu, 23 Feb 2012 15:55:57 +0000 (10:55 -0500)]
Bump to version 2.6.8rc1.

12 years agoBack port from 2.7:
Barry Warsaw [Wed, 22 Feb 2012 22:26:50 +0000 (17:26 -0500)]
Back port from 2.7:

    http://hg.python.org/cpython/rev/48705250232c
    changeset:   75187:48705250232c
    branch:      2.7
    parent:      75184:9a1d902714ae
    user:        Antoine Pitrou <solipsis@pitrou.net>
    date:        Wed Feb 22 22:16:25 2012 +0100

12 years agoBackport from 2.7:
Barry Warsaw [Wed, 22 Feb 2012 18:50:04 +0000 (13:50 -0500)]
Backport from 2.7:

    changeset:   75153:9b7c6dd19e25
    branch:      2.7
    parent:      75151:b1a02c17b327
    user:        Antoine Pitrou <solipsis@pitrou.net>
    date:        Tue Feb 21 22:02:04 2012 +0100
    files:       Lib/test/test_os.py

12 years agoBackport from 2.7 branch.
Barry Warsaw [Wed, 22 Feb 2012 18:34:18 +0000 (13:34 -0500)]
Backport from 2.7 branch.

    changeset:   75165:780008020c40
    user:        Antoine Pitrou <solipsis@pitrou.net>
    date:        Wed Feb 22 03:33:56 2012 +0100
    summary:     Fix (presumably) test_hash under big-endian systems (PPC).

12 years agoRemove reST markup from --help output. Also: O(n**2) is dict construction, not singl...
Georg Brandl [Tue, 21 Feb 2012 21:36:27 +0000 (22:36 +0100)]
Remove reST markup from --help output.  Also: O(n**2) is dict construction, not single insertion.

12 years agodon't need this hack anymore
Benjamin Peterson [Tue, 21 Feb 2012 20:08:51 +0000 (15:08 -0500)]
don't need this hack anymore

12 years agoFix crash at startup with -W options.
Antoine Pitrou [Tue, 21 Feb 2012 19:42:48 +0000 (20:42 +0100)]
Fix crash at startup with -W options.

12 years agomerge heads
Benjamin Peterson [Tue, 21 Feb 2012 16:23:21 +0000 (11:23 -0500)]
merge heads

12 years agoBackport fix from default branch for ./python -R -Wd where hash('d') would not
Barry Warsaw [Tue, 21 Feb 2012 16:16:06 +0000 (11:16 -0500)]
Backport fix from default branch for ./python -R -Wd where hash('d') would not
have gotten randomized.

12 years agoensure no one tries to hash things before the random seed is found
Benjamin Peterson [Tue, 21 Feb 2012 16:08:50 +0000 (11:08 -0500)]
ensure no one tries to hash things before the random seed is found

12 years agoLet's sort the keys so that this test passes even with random hashes.
Barry Warsaw [Tue, 21 Feb 2012 15:22:34 +0000 (10:22 -0500)]
Let's sort the keys so that this test passes even with random hashes.

12 years agoWhitespace normalization
Barry Warsaw [Tue, 21 Feb 2012 01:44:15 +0000 (20:44 -0500)]
Whitespace normalization

12 years ago- Issue #13703: oCERT-2011-003: add -R command-line option and PYTHONHASHSEED
Barry Warsaw [Tue, 21 Feb 2012 01:42:21 +0000 (20:42 -0500)]
- Issue #13703: oCERT-2011-003: add -R command-line option and PYTHONHASHSEED
  environment variable, to provide an opt-in way to protect against denial of
  service attacks due to hash collisions within the dict and set types.  Patch
  by David Malcolm, based on work by Victor Stinner.

12 years agoBack port Python 2.7 fix for test_invalid_redirect() in test_urllib.py.
Barry Warsaw [Mon, 20 Feb 2012 19:43:22 +0000 (14:43 -0500)]
Back port Python 2.7 fix for test_invalid_redirect() in test_urllib.py.

12 years agoIssue #14001: CVE-2012-0845: xmlrpc: Fix an endless loop in SimpleXMLRPCServer
Charles-François Natali [Sat, 18 Feb 2012 13:15:38 +0000 (14:15 +0100)]
Issue #14001: CVE-2012-0845: xmlrpc: Fix an endless loop in SimpleXMLRPCServer
upon malformed POST request.

13 years agoIssue #13885: CVE-2011-3389: the _ssl module would always disable the CBC IV attack...
Antoine Pitrou [Fri, 27 Jan 2012 08:42:45 +0000 (09:42 +0100)]
Issue #13885: CVE-2011-3389: the _ssl module would always disable the CBC IV attack countermeasure.

13 years agomerge closing of 2.5 branch
Martin v. Löwis [Mon, 31 Oct 2011 11:39:25 +0000 (12:39 +0100)]
merge closing of 2.5 branch

13 years ago2.5 is no longer maintained 2.5
Martin v. Löwis [Mon, 31 Oct 2011 11:38:50 +0000 (12:38 +0100)]
2.5 is no longer maintained

13 years agoRemove mentions of previous license in profile module (#12417 followup)
Éric Araujo [Thu, 28 Jul 2011 20:27:28 +0000 (22:27 +0200)]
Remove mentions of previous license in profile module (#12417 followup)

13 years agofix ws
Benjamin Peterson [Wed, 29 Jun 2011 02:57:21 +0000 (21:57 -0500)]
fix ws

13 years agoupdate profile license (closes #12417)
Benjamin Peterson [Mon, 27 Jun 2011 14:14:34 +0000 (09:14 -0500)]
update profile license (closes #12417)

13 years agoReplay svn r88852.
Barry Warsaw [Sat, 4 Jun 2011 00:05:48 +0000 (20:05 -0400)]
Replay svn r88852.

13 years agoReplay svn r88850. v2.6.7
Barry Warsaw [Sat, 4 Jun 2011 00:02:47 +0000 (20:02 -0400)]
Replay svn r88850.

13 years agoNearly null-merge 2.5.6
Martin v. Löwis [Sat, 28 May 2011 12:13:32 +0000 (14:13 +0200)]
Nearly null-merge 2.5.6

13 years agomerge 2.5.6c1 tag
Martin v. Löwis [Sat, 28 May 2011 12:06:55 +0000 (14:06 +0200)]
merge 2.5.6c1 tag

13 years agoAdded tag v2.5.6c1 for changeset a87c7b96672b
Martin v. Löwis [Sat, 28 May 2011 12:05:31 +0000 (14:05 +0200)]
Added tag v2.5.6c1 for changeset a87c7b96672b

13 years agoAdded tag v2.5.6 for changeset de34c7b097e8
Martin v. Löwis [Sat, 28 May 2011 12:00:37 +0000 (14:00 +0200)]
Added tag v2.5.6 for changeset de34c7b097e8

13 years agor88840: Prepare for 2.5.6. v2.5.6
Martin v. Löwis [Sat, 28 May 2011 11:58:36 +0000 (13:58 +0200)]
r88840: Prepare for 2.5.6.

13 years agor88828: Fix year.
Martin v. Löwis [Sat, 28 May 2011 11:57:28 +0000 (13:57 +0200)]
r88828: Fix year.

13 years agor88824: Prepare for 2.5.6c1. v2.5.6c1
Martin v. Löwis [Sat, 28 May 2011 11:56:22 +0000 (13:56 +0200)]
r88824: Prepare for 2.5.6c1.

13 years agoReplay changeset 70249:b571c7a8cf2e from fubar branch. Original commit
Barry Warsaw [Mon, 23 May 2011 19:27:52 +0000 (15:27 -0400)]
Replay changeset 70249:b571c7a8cf2e from fubar branch.  Original commit
message:

Merging post 2.6.7rc2 changes from Subversion.

13 years agoReplay changeset 70248:c714e2f92f63 from fubar branch. Original commit
Barry Warsaw [Mon, 23 May 2011 19:26:11 +0000 (15:26 -0400)]
Replay changeset 70248:c714e2f92f63 from fubar branch.  Original commit
message:

Cross-port changes for 2.6.7rc2 from the Subversion branch.

13 years agoReplay changeset 70238:03e488b5c009 from fubar branch. Original commit
Barry Warsaw [Mon, 23 May 2011 19:22:56 +0000 (15:22 -0400)]
Replay changeset 70238:03e488b5c009 from fubar branch.  Original commit
message:

Reconcile with the 2.6svn branch.  The 2.6.7 release will be made from
Subversion, but there were differences, so this brings them in sync.  These
changes should *not* propagate to any newer versions.

13 years agoThese files have Windows line endings in 2.6.
Barry Warsaw [Mon, 23 May 2011 01:16:55 +0000 (21:16 -0400)]
These files have Windows line endings in 2.6.

13 years agoCloses #11786: ConfigParser.[Raw]ConfigParser optionxform().
Łukasz Langa [Thu, 28 Apr 2011 15:27:59 +0000 (17:27 +0200)]
Closes #11786: ConfigParser.[Raw]ConfigParser optionxform().

13 years agomerge 11442 NEWS
Martin v. Löwis [Sun, 17 Apr 2011 20:56:19 +0000 (22:56 +0200)]
merge 11442 NEWS

13 years agoIssue 11442: Add NEWS entry for e9724d7abbc2
Martin v. Löwis [Sun, 17 Apr 2011 20:29:40 +0000 (22:29 +0200)]
Issue 11442: Add NEWS entry for e9724d7abbc2

13 years agoMerge cleanup.
Guido van Rossum [Tue, 29 Mar 2011 20:03:10 +0000 (13:03 -0700)]
Merge cleanup.

13 years agoMerge issue 11662 from 2.5.
Guido van Rossum [Tue, 29 Mar 2011 19:51:16 +0000 (12:51 -0700)]
Merge issue 11662 from 2.5.

13 years agoMerge urllib/urllib2 security fix from 2.5 branch.
guido@google.com [Tue, 29 Mar 2011 17:48:23 +0000 (10:48 -0700)]
Merge urllib/urllib2 security fix from 2.5 branch.

13 years agoAdding .hgignore (copied from default branch).
guido@google.com [Tue, 29 Mar 2011 16:53:33 +0000 (09:53 -0700)]
Adding .hgignore (copied from default branch).

13 years agoIssue #11639: Configuration function documentation referred to logging.XXX rather...
Vinay Sajip [Tue, 29 Mar 2011 00:07:50 +0000 (01:07 +0100)]
Issue #11639: Configuration function documentation referred to logging.XXX rather than logging.config.XXX.

13 years agoAdd CVE number to urllib/urllib2 news item.
guido@google.com [Mon, 28 Mar 2011 20:53:40 +0000 (13:53 -0700)]
Add CVE number to urllib/urllib2 news item.

13 years agoAdd tests for the urllib[2] vulnerability. Change to raise exceptions.
guido@google.com [Mon, 28 Mar 2011 20:47:01 +0000 (13:47 -0700)]
Add tests for the urllib[2] vulnerability. Change to raise exceptions.

13 years agoAdd FTP to the allowed url schemes. Add Misc/NEWS.
guido@google.com [Thu, 24 Mar 2011 17:44:17 +0000 (10:44 -0700)]
Add FTP to the allowed url schemes. Add Misc/NEWS.

13 years agoIssue 22663: fix redirect vulnerability in urllib/urllib2.
guido@google.com [Thu, 24 Mar 2011 15:07:45 +0000 (08:07 -0700)]
Issue 22663: fix redirect vulnerability in urllib/urllib2.

13 years agonull merge
Martin v. Löwis [Mon, 21 Mar 2011 09:31:44 +0000 (10:31 +0100)]
null merge

13 years agoSet subversion version identification to empty strings if this is not a subversion
Martin v. Löwis [Mon, 21 Mar 2011 09:30:07 +0000 (10:30 +0100)]
Set subversion version identification to empty strings if this is not a subversion
checkout (but a mercurial one). Closes #11579. Closes #11421.
Patch by Senthil Kumaran.

13 years agoWhoops. The copyright should be two lines (merge from 2.5).
Guido van Rossum [Sat, 19 Mar 2011 23:20:39 +0000 (16:20 -0700)]
Whoops. The copyright should be two lines (merge from 2.5).

13 years agoWhoops. The copyright should be two lines.
Guido van Rossum [Sat, 19 Mar 2011 23:20:06 +0000 (16:20 -0700)]
Whoops. The copyright should be two lines.

13 years agoTest commit. Add 2011 to copyright line (merge from 2.5).
Guido van Rossum [Sat, 19 Mar 2011 23:17:14 +0000 (16:17 -0700)]
Test commit. Add 2011 to copyright line (merge from 2.5).

13 years agoTest commit. Add 2011 to copyright line.
Guido van Rossum [Sat, 19 Mar 2011 23:14:44 +0000 (16:14 -0700)]
Test commit. Add 2011 to copyright line.

13 years agomerge from 2.5 branch.
Senthil Kumaran [Thu, 17 Mar 2011 06:23:24 +0000 (14:23 +0800)]
merge from 2.5 branch.

13 years agoFix issue11442 - Add a charset parameter to the Content-type to avoid XSS attacks.
Senthil Kumaran [Thu, 17 Mar 2011 04:34:18 +0000 (12:34 +0800)]
Fix issue11442 - Add a charset parameter to the Content-type to avoid XSS attacks.
Patch by Tom N. (Backported from py3k codeline).

13 years agoReverted bug fixes for #11444 (fc4d045e3170) and #11424 (b9d76846bb1c), which should...
Vinay Sajip [Fri, 11 Mar 2011 18:44:10 +0000 (18:44 +0000)]
Reverted bug fixes for #11444 (fc4d045e3170) and #11424 (b9d76846bb1c), which should not have been made in this branch.

13 years agoIssue #11444: Lock handlers while flushing/closing during shutdown.
Vinay Sajip [Tue, 8 Mar 2011 22:39:55 +0000 (22:39 +0000)]
Issue #11444: Lock handlers while flushing/closing during shutdown.

13 years agoIssue #11424: Fix bug in determining child loggers.
Vinay Sajip [Mon, 7 Mar 2011 15:02:11 +0000 (15:02 +0000)]
Issue #11424: Fix bug in determining child loggers.

13 years agoMerge tags from 2.5.
Georg Brandl [Sat, 5 Mar 2011 19:40:50 +0000 (20:40 +0100)]
Merge tags from 2.5.

13 years agoAdd tags from the closed branches.
Georg Brandl [Sat, 5 Mar 2011 19:38:24 +0000 (20:38 +0100)]
Add tags from the closed branches.

13 years agoDummy-merge 2.5 branch into 2.6 branch.
Georg Brandl [Sat, 5 Mar 2011 14:13:50 +0000 (15:13 +0100)]
Dummy-merge 2.5 branch into 2.6 branch.

13 years agoAdd .hgeol file and fix newlines in the 2.6 branch.
Georg Brandl [Sat, 5 Mar 2011 14:04:01 +0000 (15:04 +0100)]
Add .hgeol file and fix newlines in the 2.6 branch.

13 years agoFix tag references in 2.6 branch.
Georg Brandl [Sat, 5 Mar 2011 14:03:31 +0000 (15:03 +0100)]
Fix tag references in 2.6 branch.

13 years agoAdd .hgeol file and fix newlines in the 2.5 branch.
Georg Brandl [Sat, 5 Mar 2011 14:02:28 +0000 (15:02 +0100)]
Add .hgeol file and fix newlines in the 2.5 branch.

13 years agoFix tag references in 2.5 branch.
Georg Brandl [Sat, 5 Mar 2011 14:01:01 +0000 (15:01 +0100)]
Fix tag references in 2.5 branch.

14 years agoMerged revisions 87663 via svnmerge from
Alexander Belopolsky [Sun, 2 Jan 2011 23:26:12 +0000 (23:26 +0000)]
Merged revisions 87663 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/release27-maint

................
  r87663 | alexander.belopolsky | 2011-01-02 18:23:54 -0500 (Sun, 02 Jan 2011) | 13 lines

  Merged revisions 87648,87656 via svnmerge from
  svn+ssh://pythondev@svn.python.org/python/branches/py3k

  ........
    r87648 | alexander.belopolsky | 2011-01-02 15:48:22 -0500 (Sun, 02 Jan 2011) | 1 line

    Issue #8013: Fixed time.asctime segfault when OS's asctime fails
  ........
    r87656 | alexander.belopolsky | 2011-01-02 17:16:10 -0500 (Sun, 02 Jan 2011) | 1 line

    Issue #8013: Fixed test
  ........
................

14 years agoMerged revisions 87541,87543 via svnmerge from
Alexander Belopolsky [Tue, 28 Dec 2010 16:15:08 +0000 (16:15 +0000)]
Merged revisions 87541,87543 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/release27-maint

................
  r87541 | alexander.belopolsky | 2010-12-28 10:47:56 -0500 (Tue, 28 Dec 2010) | 9 lines

  Merged revisions 87442 via svnmerge from
  svn+ssh://pythondev@svn.python.org/python/branches/py3k

  ........
    r87442 | alexander.belopolsky | 2010-12-22 21:27:37 -0500 (Wed, 22 Dec 2010) | 1 line

    Issue #10254: Fixed a crash and a regression introduced by the implementation of PRI 29.
  ........
................
  r87543 | alexander.belopolsky | 2010-12-28 11:04:06 -0500 (Tue, 28 Dec 2010) | 1 line

  fixed issue 10254 test
................

14 years agobackporting security fix of issue 9129 (smtpd module vulnerable to DoS attacks in...
Giampaolo Rodolà [Tue, 7 Dec 2010 18:54:43 +0000 (18:54 +0000)]
backporting security fix of issue 9129 (smtpd module vulnerable to DoS attacks in case of connection bashing)

14 years agoMerge r82494 from the python2.6 branch:
Matthias Klose [Sun, 17 Oct 2010 10:48:14 +0000 (10:48 +0000)]
Merge r82494 from the python2.6 branch:

  Issue #7673: Fix security vulnerability (CVE-2010-2089) in the audioop module,
  ensure that the input string length is a multiple of the frame size

14 years agoMerge r81080 from the python2.6 branch:
Matthias Klose [Sun, 17 Oct 2010 10:34:40 +0000 (10:34 +0000)]
Merge r81080 from the python2.6 branch:

Issue #8674: fix another bogus overflow check in audioop module.

14 years agoMerged revisions 81046 from the python2.6 branch:
Matthias Klose [Sun, 17 Oct 2010 10:28:49 +0000 (10:28 +0000)]
Merged revisions 81046 from the python2.6 branch:

Issue #8674: Fix incorrect and UB-inducing overflow checks in audioop
module.  Thanks Tomas Hoger for the patch.

14 years agoPost release bump
Barry Warsaw [Tue, 24 Aug 2010 16:19:58 +0000 (16:19 +0000)]
Post release bump

14 years agoTagging 2.6.6 final.
Barry Warsaw [Mon, 23 Aug 2010 23:41:00 +0000 (23:41 +0000)]
Tagging 2.6.6 final.

14 years ago2.6.6 final. \o/ v2.6.6
Barry Warsaw [Mon, 23 Aug 2010 23:37:56 +0000 (23:37 +0000)]
2.6.6 final.  \o/

14 years agoPost release twiddling.
Barry Warsaw [Tue, 17 Aug 2010 19:57:29 +0000 (19:57 +0000)]
Post release twiddling.

14 years ago(Re-)tagging 2.6.6rc2.
Barry Warsaw [Mon, 16 Aug 2010 22:58:41 +0000 (22:58 +0000)]
(Re-)tagging 2.6.6rc2.

14 years agoMove NEWS file entry. v2.6.6rc2
Barry Warsaw [Mon, 16 Aug 2010 22:58:18 +0000 (22:58 +0000)]
Move NEWS file entry.

14 years agoRemove tag for NEWS file fix.
Barry Warsaw [Mon, 16 Aug 2010 22:58:03 +0000 (22:58 +0000)]
Remove tag for NEWS file fix.

14 years agoTagging 2.6.6rc2
Barry Warsaw [Mon, 16 Aug 2010 22:47:52 +0000 (22:47 +0000)]
Tagging 2.6.6rc2

14 years agoBumping to 2.6.6rc2.
Barry Warsaw [Mon, 16 Aug 2010 22:19:57 +0000 (22:19 +0000)]
Bumping to 2.6.6rc2.

14 years agoIssue 9568: Fix test_urllib2_localnet on OS X 10.3.
Barry Warsaw [Mon, 16 Aug 2010 19:33:51 +0000 (19:33 +0000)]
Issue 9568: Fix test_urllib2_localnet on OS X 10.3.

14 years agoMerged revisions 84100 via svnmerge from
Florent Xicluna [Mon, 16 Aug 2010 19:26:54 +0000 (19:26 +0000)]
Merged revisions 84100 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/release27-maint

................
  r84100 | florent.xicluna | 2010-08-16 21:22:18 +0200 (lun., 16 août 2010) | 13 lines

  Merged revisions 84097,84099 via svnmerge from
  svn+ssh://pythondev@svn.python.org/python/branches/py3k

  ........
    r84097 | florent.xicluna | 2010-08-16 20:41:19 +0200 (lun., 16 août 2010) | 1 line

    Use test.support and unittest features.  Fix duplicated test (bad merge in r79033).  Fix comment for issue #7902.
  ........
    r84099 | florent.xicluna | 2010-08-16 21:03:05 +0200 (lun., 16 août 2010) | 1 line

    I get it wrong in r84097: s/relative/absolute/
  ........
................

14 years agoMerged revisions 82529 via svnmerge from
Florent Xicluna [Mon, 16 Aug 2010 16:08:12 +0000 (16:08 +0000)]
Merged revisions 82529 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/release27-maint

........
  r82529 | florent.xicluna | 2010-07-04 16:24:40 +0200 (dim., 04 juil. 2010) | 1 line

  Issue #9145: Fix a regression due to r79539
........

14 years agoFix #9600. Don't use relative imports for _multiprocessing on Windows.
Brian Curtin [Sat, 14 Aug 2010 17:09:55 +0000 (17:09 +0000)]
Fix #9600. Don't use relative imports for _multiprocessing on Windows.
Same fix as #9513 on 3.x.

14 years agoRevert regression from r81256 (with release manager approval, see #8688)
Éric Araujo [Sat, 14 Aug 2010 02:07:26 +0000 (02:07 +0000)]
Revert regression from r81256 (with release manager approval, see #8688)

14 years agoIssue #8433: Fix test_curses failure caused by newer versions of
Mark Dickinson [Fri, 13 Aug 2010 07:57:29 +0000 (07:57 +0000)]
Issue #8433: Fix test_curses failure caused by newer versions of
ncurses returning ERR from getmouse() when there are no mouse events
available.

14 years ago(issue 2944) reverting r83704 changes as per Barry Warsaw request
Giampaolo Rodolà [Fri, 13 Aug 2010 01:30:39 +0000 (01:30 +0000)]
(issue 2944) reverting r83704 changes as per Barry Warsaw request

14 years agoRolled back revisions 81259,81265 via svnmerge from
Florent Xicluna [Thu, 12 Aug 2010 22:39:08 +0000 (22:39 +0000)]
Rolled back revisions 81259,81265 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

(due to 2.6.6 release candidate freeze)

14 years agoAdd NEWS entry for r83964.
Ezio Melotti [Thu, 12 Aug 2010 17:49:01 +0000 (17:49 +0000)]
Add NEWS entry for r83964.

14 years ago#9543: Fix regression introduced in r83624.
Ezio Melotti [Thu, 12 Aug 2010 17:29:24 +0000 (17:29 +0000)]
#9543: Fix regression introduced in r83624.

14 years agoTestCase.skipTest is not defined in Python 2.6
Florent Xicluna [Wed, 11 Aug 2010 00:19:53 +0000 (00:19 +0000)]
TestCase.skipTest is not defined in Python 2.6

14 years agoBlocked revisions 83902,83907 via svnmerge
Florent Xicluna [Mon, 9 Aug 2010 22:15:51 +0000 (22:15 +0000)]
Blocked revisions 83902,83907 via svnmerge

................
  r83902 | florent.xicluna | 2010-08-09 22:02:00 +0200 (lun., 09 août 2010) | 25 lines

  Merged revisions 83833,83838-83839,83859,83878 via svnmerge from
  svn+ssh://pythondev@svn.python.org/python/branches/py3k

  ........
    r83833 | florent.xicluna | 2010-08-08 18:25:27 +0200 (dim., 08 août 2010) | 2 lines

    Add test case for the HTTPResponse being an iterable.  Follow-up of issue #4608.
  ........
    r83838 | florent.xicluna | 2010-08-08 20:03:44 +0200 (dim., 08 août 2010) | 2 lines

    Typo.
  ........
    r83839 | florent.xicluna | 2010-08-08 20:06:13 +0200 (dim., 08 août 2010) | 2 lines

    Issue #7564: Skip test_ioctl if another process is attached to /dev/tty.
  ........
    r83859 | florent.xicluna | 2010-08-09 00:07:16 +0200 (lun., 09 août 2010) | 2 lines

    Fix #8530: Prevent stringlib fastsearch from reading beyond the front of an array.
  ........
    r83878 | florent.xicluna | 2010-08-09 10:29:08 +0200 (lun., 09 août 2010) | 1 line

    Merge the 2to3 script from /sandbox/trunk/2to3/2to3, revision 72867 (latest).
  ........
................
  r83907 | florent.xicluna | 2010-08-09 22:29:44 +0200 (lun., 09 août 2010) | 27 lines

  Missed the svnmerge property on r83902.

  Recorded merge of revisions 83833,83838-83839,83859,83878 via svnmerge from
  svn+ssh://pythondev@svn.python.org/python/branches/py3k

  ........
    r83833 | florent.xicluna | 2010-08-08 18:25:27 +0200 (dim., 08 août 2010) | 2 lines

    Add test case for the HTTPResponse being an iterable.  Follow-up of issue #4608.
  ........
    r83838 | florent.xicluna | 2010-08-08 20:03:44 +0200 (dim., 08 août 2010) | 2 lines

    Typo.
  ........
    r83839 | florent.xicluna | 2010-08-08 20:06:13 +0200 (dim., 08 août 2010) | 2 lines

    Issue #7564: Skip test_ioctl if another process is attached to /dev/tty.
  ........
    r83859 | florent.xicluna | 2010-08-09 00:07:16 +0200 (lun., 09 août 2010) | 2 lines

    Fix #8530: Prevent stringlib fastsearch from reading beyond the front of an array.
  ........
    r83878 | florent.xicluna | 2010-08-09 10:29:08 +0200 (lun., 09 août 2010) | 1 line

    Merge the 2to3 script from /sandbox/trunk/2to3/2to3, revision 72867 (latest).
  ........
................

14 years agoBlocked revisions 79534,79537,79606,80411-80412,81140-81141,81149-81151,82056 via...
Florent Xicluna [Mon, 9 Aug 2010 22:13:22 +0000 (22:13 +0000)]
Blocked revisions 79534,79537,79606,80411-80412,81140-81141,81149-81151,82056 via svnmerge

........
  r79534 | florent.xicluna | 2010-03-31 23:21:54 +0200 (mer., 31 mars 2010) | 2 lines

  Fix test for xml.etree when using a non-ascii path.  And use check_warnings instead of catch_warnings.
........
  r79537 | florent.xicluna | 2010-03-31 23:40:32 +0200 (mer., 31 mars 2010) | 2 lines

  Fix typo
........
  r79606 | florent.xicluna | 2010-04-02 19:26:42 +0200 (ven., 02 avril 2010) | 2 lines

  Backport some robotparser test and skip the test if the external resource is not available.
........
  r80411 | florent.xicluna | 2010-04-23 19:59:10 +0200 (ven., 23 avril 2010) | 2 lines

  Remove ImportWarnings filters.  They become obsolete after r79310, issue #8205.
........
  r80412 | florent.xicluna | 2010-04-23 20:10:12 +0200 (ven., 23 avril 2010) | 2 lines

  Fix the "regrtest -s" switch.
........
  r81140 | florent.xicluna | 2010-05-13 19:05:29 +0200 (jeu., 13 mai 2010) | 3 lines

  Add sensible information about the OS X platform to diagnose issue #8423:
  test_pep277 fails on "x86 Tiger" buildbot but not on "PPC Tiger".
........
  r81141 | florent.xicluna | 2010-05-13 20:16:06 +0200 (jeu., 13 mai 2010) | 2 lines

  Revert the additional OS X information (r81140).  Keep the endianness information.
........
  r81149 | florent.xicluna | 2010-05-13 23:40:01 +0200 (jeu., 13 mai 2010) | 2 lines

  Better test skipping, with message in the log.
........
  r81150 | florent.xicluna | 2010-05-13 23:41:05 +0200 (jeu., 13 mai 2010) | 2 lines

  Improve test feedback to troubleshoot issue #8423 on OS X.
........
  r81151 | florent.xicluna | 2010-05-14 01:46:48 +0200 (ven., 14 mai 2010) | 2 lines

  Revert changeset r81150 which helped diagnose issue #8423 on some OS X buildbot.
........
  r82056 | florent.xicluna | 2010-06-17 22:30:56 +0200 (jeu., 17 juin 2010) | 2 lines

  Add few words about test.test_genericpath.CommonTest
........