Commit Graph

39543 Commits

Author SHA1 Message Date
Martin v. Löwis 6870f26d26 Merged revisions 73673 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r73673 | martin.v.loewis | 2009-06-29 08:35:26 +0200 (Mo, 29 Jun 2009) | 2 lines

  Link to PEP 383.
........
2009-06-29 06:36:33 +00:00
Benjamin Peterson e65abb3fb0 Merged revisions 73671 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

................
  r73671 | benjamin.peterson | 2009-06-28 22:37:21 -0500 (Sun, 28 Jun 2009) | 9 lines

  Merged revisions 73669 via svnmerge from
  svn+ssh://pythondev@svn.python.org/python/trunk

  ........
    r73669 | benjamin.peterson | 2009-06-28 22:30:55 -0500 (Sun, 28 Jun 2009) | 1 line

    update to sphinx 0.6.2
  ........
................
2009-06-29 03:46:42 +00:00
Raymond Hettinger b8aff6a6aa Clean-up floating point tutorial 2009-06-29 01:50:51 +00:00
Mark Dickinson 5afe30e07c Merged revisions 73661 via svnmerge from
svn+ssh://pythondev@www.python.org/python/branches/py3k

................
  r73661 | mark.dickinson | 2009-06-28 23:40:48 +0100 (Sun, 28 Jun 2009) | 9 lines

  Merged revisions 73660 via svnmerge from
  svn+ssh://pythondev@svn.python.org/python/trunk

  ........
    r73660 | mark.dickinson | 2009-06-28 23:37:13 +0100 (Sun, 28 Jun 2009) | 1 line

    Remove unused stdint.h includes
  ........
................
2009-06-28 22:52:18 +00:00
Benjamin Peterson 32123370f4 unfortunately we can't kill compiler_new_tmpname here 2009-06-28 22:36:18 +00:00
Mark Dickinson a1713bdfed Merged revisions 73642 via svnmerge from
svn+ssh://pythondev@www.python.org/python/branches/py3k

........
  r73642 | mark.dickinson | 2009-06-28 22:24:42 +0100 (Sun, 28 Jun 2009) | 1 line

  Fix incorrect quote type on Decimal examples
........
2009-06-28 21:25:41 +00:00
Mark Dickinson 9307839ee9 Merged revisions 73640 via svnmerge from
svn+ssh://pythondev@www.python.org/python/branches/py3k

........
  r73640 | mark.dickinson | 2009-06-28 22:19:18 +0100 (Sun, 28 Jun 2009) | 3 lines

  Issue #6354 continued:  reword confusing tutorial note on the (no-longer
  existing) difference between str(8/5) and repr(8/5).
........
2009-06-28 21:20:21 +00:00
Mark Dickinson d1cc39d3d8 Merged revisions 73636 via svnmerge from
svn+ssh://pythondev@www.python.org/python/branches/py3k

........
  r73636 | mark.dickinson | 2009-06-28 21:59:42 +0100 (Sun, 28 Jun 2009) | 2 lines

  Issue #6354: More fixes for code examples involving the repr of a float.
........
2009-06-28 21:00:42 +00:00
Mark Dickinson cf2d9ff3c5 Merged revisions 73632 via svnmerge from
svn+ssh://pythondev@www.python.org/python/branches/py3k

........
  r73632 | mark.dickinson | 2009-06-28 21:36:54 +0100 (Sun, 28 Jun 2009) | 3 lines

  Corrections to decimal flying circus:  round returns a Decimal;
  float should have a short repr.
........
2009-06-28 20:38:24 +00:00
Benjamin Peterson d76c8da098 Merged revisions 73623-73624 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

................
  r73623 | benjamin.peterson | 2009-06-28 12:22:03 -0500 (Sun, 28 Jun 2009) | 58 lines

  Merged revisions 73004,73439,73496,73509,73529,73564,73576-73577,73595-73596,73605 via svnmerge from
  svn+ssh://pythondev@svn.python.org/python/trunk

  ........
    r73004 | jeffrey.yasskin | 2009-05-28 22:44:31 -0500 (Thu, 28 May 2009) | 5 lines

    Fix nearly all compilation warnings under Apple gcc-4.0.  Tested with OPT="-g
    -Wall -Wstrict-prototypes -Werror" in both --with-pydebug mode and --without.
    There's still a batch of non-prototype warnings in Xlib.h that I don't know how
    to fix.
  ........
    r73439 | benjamin.peterson | 2009-06-15 19:29:31 -0500 (Mon, 15 Jun 2009) | 1 line

    don't mask encoding errors when decoding a string #6289
  ........
    r73496 | vinay.sajip | 2009-06-21 12:37:27 -0500 (Sun, 21 Jun 2009) | 1 line

    Issue #6314: logging.basicConfig() performs extra checks on the "level" argument.
  ........
    r73509 | amaury.forgeotdarc | 2009-06-22 14:33:48 -0500 (Mon, 22 Jun 2009) | 2 lines

    #4490 Fix sample code run by "python -m xml.sax.xmlreader"
  ........
    r73529 | r.david.murray | 2009-06-23 13:02:46 -0500 (Tue, 23 Jun 2009) | 4 lines

    Fix issue 5230 by having pydoc's safeimport check to see if the import
    error was thrown from itself in order to decide if the module can't be
    found.  Thanks to Lucas Prado Melo for collaborating on the fix and tests.
  ........
    r73564 | amaury.forgeotdarc | 2009-06-25 17:29:29 -0500 (Thu, 25 Jun 2009) | 6 lines

    #2016 Fix a crash in function call when the **kwargs dictionary is mutated
    during the function call setup.

    This even gives a slight speedup, probably because tuple allocation
    is faster than PyMem_NEW.
  ........
    r73576 | benjamin.peterson | 2009-06-26 18:37:06 -0500 (Fri, 26 Jun 2009) | 1 line

    document is_declared_global()
  ........
    r73577 | benjamin.peterson | 2009-06-27 09:16:23 -0500 (Sat, 27 Jun 2009) | 1 line

    link to extensive generator docs in the reference manual
  ........
    r73595 | ezio.melotti | 2009-06-27 18:45:39 -0500 (Sat, 27 Jun 2009) | 1 line

    stmt and setup can contain multiple statements, see #5896
  ........
    r73596 | ezio.melotti | 2009-06-27 19:07:45 -0500 (Sat, 27 Jun 2009) | 1 line

    Fixed a wrong apostrophe
  ........
    r73605 | georg.brandl | 2009-06-28 07:10:18 -0500 (Sun, 28 Jun 2009) | 1 line

    Remove stray pychecker directive.
  ........
................
  r73624 | benjamin.peterson | 2009-06-28 12:32:20 -0500 (Sun, 28 Jun 2009) | 1 line

  document BufferedIOBase.raw and TextIOBase.buffer
................
2009-06-28 17:35:48 +00:00
Benjamin Peterson 2e5820b804 Merged revisions 73618 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r73618 | benjamin.peterson | 2009-06-28 11:23:55 -0500 (Sun, 28 Jun 2009) | 1 line

  fix useless comparison #6355
........
2009-06-28 16:26:13 +00:00
Hirokazu Yamamoto 5111127f45 Merged revisions 73609 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r73609 | hirokazu.yamamoto | 2009-06-28 22:21:41 +0900 | 1 line

  Sorted file names.
........
2009-06-28 13:32:29 +00:00
Martin v. Löwis a01bd62f48 Merged revisions 73607 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

................
  r73607 | martin.v.loewis | 2009-06-28 14:28:29 +0200 (So, 28 Jun 2009) | 9 lines

  Merged revisions 73606 via svnmerge from
  svn+ssh://pythondev@svn.python.org/python/trunk

  ........
    r73606 | martin.v.loewis | 2009-06-28 14:24:23 +0200 (So, 28 Jun 2009) | 2 lines

    Fix types in logic to compute help file name.
  ........
................
2009-06-28 12:29:40 +00:00
Martin v. Löwis 9d49c1d186 Merged revisions 73600 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

................
  r73600 | martin.v.loewis | 2009-06-28 11:36:14 +0200 (So, 28 Jun 2009) | 10 lines

  Merged revisions 73598 via svnmerge from
  svn+ssh://pythondev@svn.python.org/python/trunk

  ........
    r73598 | martin.v.loewis | 2009-06-28 11:32:39 +0200 (So, 28 Jun 2009) | 3 lines

    Issue 5390: Add uninstall icon independent of whether file
    extensions are installed.
  ........
................
2009-06-28 09:40:34 +00:00
Martin v. Löwis 0491d78a9e Merged revisions 73590 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r73590 | martin.v.loewis | 2009-06-28 00:51:58 +0200 (So, 28 Jun 2009) | 2 lines

  Add uuids for 3.1.[12](rc1|final).
........
2009-06-27 22:54:20 +00:00
Benjamin Peterson 2a0a8fd8a5 Merged revisions 73585 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

................
  r73585 | benjamin.peterson | 2009-06-27 17:15:41 -0500 (Sat, 27 Jun 2009) | 9 lines

  Merged revisions 73575 via svnmerge from
  svn+ssh://pythondev@svn.python.org/python/trunk

  ........
    r73575 | benjamin.peterson | 2009-06-26 11:49:06 -0500 (Fri, 26 Jun 2009) | 1 line

    mark 3.1 as stable docs
  ........
................
2009-06-27 22:44:09 +00:00
Benjamin Peterson 08e1bef3a7 Blocked revisions 73580-73582 via svnmerge
........
  r73580 | benjamin.peterson | 2009-06-27 16:40:27 -0500 (Sat, 27 Jun 2009) | 1 line

  bump to 3.2a0
........
  r73581 | benjamin.peterson | 2009-06-27 17:00:01 -0500 (Sat, 27 Jun 2009) | 1 line

  fix mistake in version bump
........
  r73582 | benjamin.peterson | 2009-06-27 17:00:30 -0500 (Sat, 27 Jun 2009) | 1 line

  update install dir version
........
2009-06-27 22:42:54 +00:00
Benjamin Peterson a723a7d8a4 Initialized merge tracking via "svnmerge" with revisions "1-73579" from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
2009-06-27 22:37:40 +00:00
Benjamin Peterson 2e572c2f05 remove svnmerge properties 2009-06-27 22:18:44 +00:00
Benjamin Peterson 0887dbbcfc update doc upload URL 2009-06-27 22:06:56 +00:00
Benjamin Peterson e8fb2039c0 version to 3.1.1a0 2009-06-27 22:03:18 +00:00
Benjamin Peterson 09be4159bf make 3.1 maintenance branch 2009-06-27 21:18:07 +00:00
Benjamin Peterson c216b27c42 tag Python version 3.1! 2009-06-26 13:27:07 +00:00
Benjamin Peterson 1da43e5e91 rearrange the sections of the README, so they'll hopefully be more in the order people will interested in 2009-06-26 13:21:52 +00:00
Benjamin Peterson 392851624f bump version to 3.1 final :) 2009-06-26 13:11:28 +00:00
Benjamin Peterson 6a86a62049 update pydoc-topics 2009-06-26 13:05:03 +00:00
Gregory P. Smith e88749b475 Merged revisions 73565 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r73565 | gregory.p.smith | 2009-06-26 00:50:21 -0700 (Fri, 26 Jun 2009) | 2 lines

  Fixes the last problem mentioned in issue1202.
........

Issue #1202: zipfile module would cause a struct.error when attempting to store
files with a CRC32 > 2**31-1.  (on trunk this was merely a warning, in the py3k
branch this caused an exception so I'm treating this as a release blocker and
merging it now)
2009-06-26 08:05:13 +00:00
Ezio Melotti 619de8f107 fixed double dict.items in glossary->view 2009-06-25 18:39:31 +00:00
R. David Murray 6601126233 Merged revisions 73511 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r73511 | r.david.murray | 2009-06-22 18:11:04 -0400 (Mon, 22 Jun 2009) | 2 lines

  Improve English phrasing.
........
2009-06-25 17:37:57 +00:00
R. David Murray c7071671c9 Merged revisions 73557 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r73557 | r.david.murray | 2009-06-25 13:29:39 -0400 (Thu, 25 Jun 2009) | 3 lines

  Issue 6340: update by Gregor Lingl of his tdemo_chaos demo program.
  Functionally equivalent, clearer code, English comments.
........
2009-06-25 17:32:06 +00:00
R. David Murray fd851d3a3b Recorded merge of revisions 73554 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r73554 | r.david.murray | 2009-06-25 10:21:06 -0400 (Thu, 25 Jun 2009) | 2 lines

  Add a couple of missing function alias declarations to the turtle docs.
........
2009-06-25 15:03:12 +00:00
R. David Murray 7fcd3de3ca Fix some broken/missing function:: declarations in turtle docs
pointed out by Gregor Lingl in issue 6339.
2009-06-25 14:26:19 +00:00
Benjamin Peterson 12792092a6 this is also no longer true 2009-06-24 22:16:41 +00:00
Benjamin Peterson a47af9cf18 fix comment 2009-06-24 21:14:38 +00:00
Mark Dickinson ad19556716 Misc/NEWS entry for r73547 2009-06-24 19:01:32 +00:00
Mark Dickinson eb36d31bb8 Issue #6334: Fix buggy internal length calculation in builtin range function 2009-06-24 18:36:46 +00:00
Georg Brandl eeb575f329 Merged revisions 73544 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r73544 | georg.brandl | 2009-06-24 06:41:19 +0000 (Mi, 24 Jun 2009) | 1 line

  #6332: fix word dupes throughout the source.
........
2009-06-24 06:42:05 +00:00
Benjamin Peterson bbcd1eb64c add sys prefix 2009-06-24 02:29:57 +00:00
Raymond Hettinger bbccbfd6b8 Add procedural note. 2009-06-23 22:24:13 +00:00
Amaury Forgeot d'Arc 378314330f Merged revisions 73537 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r73537 | amaury.forgeotdarc | 2009-06-23 23:53:46 +0200 (mar., 23 juin 2009) | 3 lines

  Remove last remnants of the ipaddr package.
  The changes in mcast.py come from the first version of the patch for issue5379.
........
2009-06-23 22:01:54 +00:00
Amaury Forgeot d'Arc 5034624fdd Blocked revisions 73534 via svnmerge
........
  r73534 | amaury.forgeotdarc | 2009-06-23 23:09:09 +0200 (mar., 23 juin 2009) | 2 lines

  Remove the ipaddr module per discussion on python-dev
........
2009-06-23 21:59:26 +00:00
Raymond Hettinger ec7bfb314c Issue 6305: Clarify error message for large arguments to itertools.islice(). 2009-06-23 21:27:39 +00:00
R. David Murray df45cda0dd Recorded merge of revisions 73532 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

(applied to py3k in r73531)

........
  r73532 | raymond.hettinger | 2009-06-23 16:59:43 -0400 (Tue, 23 Jun 2009) | 3 lines

  Issue 6329: Fix iteration for memoryviews.
........
2009-06-23 21:05:37 +00:00
Raymond Hettinger 159eac92c5 Issue 6329: Fix iteration for memoryviews. 2009-06-23 20:38:54 +00:00
Nick Coghlan b7706b58fa Merged revisions 73518-73519 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r73518 | nick.coghlan | 2009-06-23 20:19:30 +1000 (Tue, 23 Jun 2009) | 1 line

  Issue 6288: Update contextlib.nested() docstring to reflect new documentation
........
  r73519 | nick.coghlan | 2009-06-23 20:51:02 +1000 (Tue, 23 Jun 2009) | 1 line

  Remove markup from docstring
........
2009-06-23 10:55:52 +00:00
Benjamin Peterson 5250401bd0 must be bytes 2009-06-23 03:09:33 +00:00
Benjamin Peterson b48f63433e Merged revisions 73415,73417-73418 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r73415 | benjamin.peterson | 2009-06-13 09:25:08 -0500 (Sat, 13 Jun 2009) | 1 line

  use 'rc' for release candidates for consistency
........
  r73417 | benjamin.peterson | 2009-06-13 10:42:23 -0500 (Sat, 13 Jun 2009) | 1 line

  special case release candidates
........
  r73418 | benjamin.peterson | 2009-06-13 10:48:04 -0500 (Sat, 13 Jun 2009) | 1 line

  handle different rc format
........
2009-06-22 19:36:31 +00:00
Benjamin Peterson 8be54bb560 revert 73505 here 2009-06-22 18:31:48 +00:00
Matthias Klose b0a8be5f1b - remove svn:executable property from some library files 2009-06-22 14:17:00 +00:00
Matthias Klose ab2b7559e2 - Issue #5590: Remove unused global variable in pyexpat extension. 2009-06-22 13:05:52 +00:00