1. 18 Dec, 2010 3 commits
    • R. David Murray's avatar
      Merged revisions 87374 via svnmerge from · 3f752ab2
      R. David Murray authored
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ........
        r87374 | r.david.murray | 2010-12-18 12:19:10 -0500 (Sat, 18 Dec 2010) | 8 lines
      
        #10404: Use ctl-button-1 for context menus on OSX Idle.
      
        This provides access to the context menus where they previously could
        not be accessed due to the way OSX Tk binds buttons.  It also
        improves platform consistency.
      
        Patch by Ned Deily.
      ........
      3f752ab2
    • Ezio Melotti's avatar
      Blocked revisions 87368 via svnmerge · cfe0c163
      Ezio Melotti authored
      ........
        r87368 | ezio.melotti | 2010-12-18 15:59:43 +0100 (Sat, 18 Dec 2010) | 1 line
      
        #5587: add a repr to dict_proxy objects.  Patch by David Stanek and Daniel Urban.
      ........
      cfe0c163
    • R. David Murray's avatar
      Merged revisions 87356 via svnmerge from · 7a697251
      R. David Murray authored
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ........
        r87356 | r.david.murray | 2010-12-17 22:48:32 -0500 (Fri, 17 Dec 2010) | 11 lines
      
        #9907: call rl_initialize early when using editline on OSX
      
        editline rl_initialize apparently discards any mappings done before it
        is called, which makes tab revert to file completion instead of inserting
        a tab.  So now on OSX we call rl_initialize first if we are using
        readline, and then re-read the users .editrc (if any) afterward so they
        can still override our defaults.
      
        Patch by Ned Deily, modified by Ronald Oussoren.
      ........
      7a697251
  2. 17 Dec, 2010 3 commits
  3. 16 Dec, 2010 7 commits
    • R. David Murray's avatar
      Blocked revisions 87324 via svnmerge · 3e8cd62d
      R. David Murray authored
      The risk of breakage (since the tests aren't backported) seems higher
      than the benefit for a point release, since this is not a semantic
      change.
      
      ........
        r87324 | r.david.murray | 2010-12-16 14:08:51 -0500 (Thu, 16 Dec 2010) | 9 lines
      
        #10719: restore messages generated on invalid compileall args
      
        Before the introduction of filename arguments to compileall it gave semi useful
        messages about not being able to 'list' names that weren't valid directories.
        This fix restores that behavior.  In addition to the test for this case, the
        patch also adds a test for the default behavior of compileall when no arguments
        are provided, and fixes a bug in one of the previously added tests.
      ........
      3e8cd62d
    • Antoine Pitrou's avatar
      2623ae90
    • Antoine Pitrou's avatar
      Merged revisions 87317 via svnmerge from · 47d9b0e0
      Antoine Pitrou authored
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ........
        r87317 | antoine.pitrou | 2010-12-16 17:48:36 +0100 (jeu., 16 déc. 2010) | 4 lines
      
        Issue #10714: Limit length of incoming request in http.server to 65536 bytes
        for security reasons.  Initial patch by Ross Lagerwall.
      ........
      
      (also backported some tests)
      47d9b0e0
    • Éric Araujo's avatar
      Blocked revisions 87312 via svnmerge · fd1cf6f8
      Éric Araujo authored
      ........
        r87312 | eric.araujo | 2010-12-16 07:28:48 +0100 (jeu., 16 déc. 2010) | 2 lines
      
        Add missing docs and directives related to PEP 3147 and byte-compilation
      ........
      fd1cf6f8
    • Éric Araujo's avatar
      Add missing doc from r79533 · f7d81739
      Éric Araujo authored
      f7d81739
    • Éric Araujo's avatar
      Add doc for compileall.compile_file · c11ba768
      Éric Araujo authored
      c11ba768
    • Éric Araujo's avatar
      Merged revisions 86521,86632,86823-86824,87294,87296,87300,87302 via svnmerge from · a8132ec2
      Éric Araujo authored
      svn+ssh://pythondev@svn.python.org/python/branches/py3k
      
      ........
        r86521 | eric.araujo | 2010-11-18 17:38:46 +0100 (jeu., 18 nov. 2010) | 17 lines
      
        Fix usage of :option: in the docs (#9312).
      
        :option: is used to create a link to an option of python, not to mark
        up any instance of any arbitrary command-line option.  These were
        changed to ````.
      
        For modules which do have a command-line interface, lists of options
        have been properly marked up with the program/cmdoption directives
        combo.  Options defined in such blocks can be linked to with :option:
        later in the same file, they won’t link to an option of python.
      
        Finally, the markup of command-line fragments in optparse.rst has
        been cleaned to use ``x`` instead of ``"x"``, keeping that latter
        form for actual Python strings.
      
        Patch by Eli Bendersky and Éric Araujo.
      ........
        r86632 | eric.araujo | 2010-11-21 04:09:17 +0100 (dim., 21 nov. 2010) | 2 lines
      
        Style edits in followup to r86521 (#9312)
      ........
        r86823 | eric.araujo | 2010-11-27 00:31:07 +0100 (sam., 27 nov. 2010) | 2 lines
      
        Use link-generating markup (see #9312)
      ........
        r86824 | eric.araujo | 2010-11-27 00:46:18 +0100 (sam., 27 nov. 2010) | 2 lines
      
        Rewrap long lines + minor edits
      ........
        r87294 | eric.araujo | 2010-12-16 01:07:01 +0100 (jeu., 16 déc. 2010) | 2 lines
      
        No need to generate a link for something that’s just above.
      ........
        r87296 | eric.araujo | 2010-12-16 01:23:30 +0100 (jeu., 16 déc. 2010) | 2 lines
      
        Advertise “python -m” instead of direct filename.
      ........
        r87300 | eric.araujo | 2010-12-16 02:40:26 +0100 (jeu., 16 déc. 2010) | 2 lines
      
        Advertise “python -m test” over test.regrtest (r87296 followup)
      ........
        r87302 | eric.araujo | 2010-12-16 03:10:11 +0100 (jeu., 16 déc. 2010) | 2 lines
      
        Add versionadded directive missing from r78983.
      ........
      a8132ec2
  4. 15 Dec, 2010 5 commits
  5. 14 Dec, 2010 9 commits
  6. 12 Dec, 2010 1 commit
  7. 11 Dec, 2010 6 commits
  8. 09 Dec, 2010 3 commits
  9. 07 Dec, 2010 3 commits