1. 18 Ock, 2008 1 kayıt (commit)
    • Christian Heimes's avatar
      Merged revisions 59985-60000,60002,60005-60007,60009-60042 via svnmerge from · 679db4aa
      Christian Heimes yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r59987 | raymond.hettinger | 2008-01-15 21:52:42 +0100 (Tue, 15 Jan 2008) | 1 line
      
        Refactor if/elif chain for clarity and speed.  Remove dependency on subclasses having to implement _empty and _full.
      ........
        r59988 | raymond.hettinger | 2008-01-15 22:22:47 +0100 (Tue, 15 Jan 2008) | 1 line
      
        Fix-up half-written paragraph in the docs
      ........
        r59989 | amaury.forgeotdarc | 2008-01-15 22:25:11 +0100 (Tue, 15 Jan 2008) | 3 lines
      
        test_doctest fails since r59984.
        Not sure if these are the correct values, but save_stdout has to be set before its usage...
      ........
        r59992 | andrew.kuchling | 2008-01-16 01:32:03 +0100 (Wed, 16 Jan 2008) | 1 line
      
        Docstring typos
      ........
        r59993 | andrew.kuchling | 2008-01-16 04:17:25 +0100 (Wed, 16 Jan 2008) | 1 line
      
        Add PEP 3141 section
      ........
        r59998 | andrew.kuchling | 2008-01-16 14:01:51 +0100 (Wed, 16 Jan 2008) | 1 line
      
        Markup fix
      ........
        r59999 | georg.brandl | 2008-01-16 17:56:29 +0100 (Wed, 16 Jan 2008) | 2 lines
      
        Fix MSDN library URL. (#1854)
      ........
        r60006 | georg.brandl | 2008-01-16 21:27:56 +0100 (Wed, 16 Jan 2008) | 3 lines
      
        Add Python-specific content to Doc dir. Update configuration file
        to work with the newest Sphinx.
      ........
        r60007 | georg.brandl | 2008-01-16 21:29:00 +0100 (Wed, 16 Jan 2008) | 2 lines
      
        Doc build should work with 2.4 now.
      ........
        r60009 | raymond.hettinger | 2008-01-17 00:38:16 +0100 (Thu, 17 Jan 2008) | 1 line
      
        Minor wordsmithing.
      ........
        r60010 | raymond.hettinger | 2008-01-17 00:40:45 +0100 (Thu, 17 Jan 2008) | 1 line
      
        Add queues will alternative fetch orders (priority based and stack based).
      ........
        r60011 | raymond.hettinger | 2008-01-17 00:49:35 +0100 (Thu, 17 Jan 2008) | 1 line
      
        Add news entry.
      ........
        r60013 | raymond.hettinger | 2008-01-17 04:02:14 +0100 (Thu, 17 Jan 2008) | 1 line
      
        Make starmap() match its pure python definition and accept any itertable input (not just tuples).
      ........
        r60015 | gregory.p.smith | 2008-01-17 08:43:20 +0100 (Thu, 17 Jan 2008) | 3 lines
      
        Comply with RFC 3207.
        Fixes issue 829951 - http://bugs.python.org/issue829951
      ........
        r60018 | gregory.p.smith | 2008-01-17 09:03:17 +0100 (Thu, 17 Jan 2008) | 2 lines
      
        entry for r60015
      ........
        r60019 | raymond.hettinger | 2008-01-17 09:07:05 +0100 (Thu, 17 Jan 2008) | 1 line
      
        Note versionadded.
      ........
        r60020 | gregory.p.smith | 2008-01-17 09:35:49 +0100 (Thu, 17 Jan 2008) | 8 lines
      
        Fixes (accepts patch) issue1339 - http://bugs.python.org/issue1339
        - Factor out the duplication of EHLO/HELO in login() and sendmail() to
          a new function, ehlo_or_helo_if_needed().
        - Use ehlo_or_helo_if_needed() in starttls()
        - Check for the starttls exception in starttls() in the same way as
          login() checks for the auth extension.
        Contributed by Bill Fenner.
      ........
        r60021 | andrew.kuchling | 2008-01-17 13:00:15 +0100 (Thu, 17 Jan 2008) | 1 line
      
        Revise 3141 section a bit; add some Windows items
      ........
        r60022 | brett.cannon | 2008-01-17 19:45:10 +0100 (Thu, 17 Jan 2008) | 2 lines
      
        Fix a function pointer declaration to silence the compiler.
      ........
        r60024 | raymond.hettinger | 2008-01-17 20:31:38 +0100 (Thu, 17 Jan 2008) | 1 line
      
        Issue #1861:  Add read-only attribute listing upcoming events in the order they will be run.
      ........
        r60025 | andrew.kuchling | 2008-01-17 20:49:24 +0100 (Thu, 17 Jan 2008) | 1 line
      
        Correction from Jordan Lewis: halfdelay() uses tenths of a second, not milliseconds
      ........
        r60026 | raymond.hettinger | 2008-01-17 23:27:49 +0100 (Thu, 17 Jan 2008) | 1 line
      
        Add advice on choosing between scheduler and threading.Timer().
      ........
        r60028 | christian.heimes | 2008-01-18 00:01:44 +0100 (Fri, 18 Jan 2008) | 2 lines
      
        Updated new property syntax. An elaborate example for subclassing and the getter was missing.
        Added comment about VS 2008 and PGO builds.
      ........
        r60029 | raymond.hettinger | 2008-01-18 00:32:01 +0100 (Fri, 18 Jan 2008) | 1 line
      
        Fix-up Timer() example.
      ........
        r60030 | raymond.hettinger | 2008-01-18 00:56:56 +0100 (Fri, 18 Jan 2008) | 1 line
      
        Fix markup
      ........
        r60031 | raymond.hettinger | 2008-01-18 01:10:42 +0100 (Fri, 18 Jan 2008) | 1 line
      
        clearcache() needs to remove the dict as well as clear it.
      ........
        r60033 | andrew.kuchling | 2008-01-18 03:26:16 +0100 (Fri, 18 Jan 2008) | 1 line
      
        Bump verson
      ........
        r60034 | andrew.kuchling | 2008-01-18 03:42:52 +0100 (Fri, 18 Jan 2008) | 1 line
      
        Typo fix
      ........
        r60035 | christian.heimes | 2008-01-18 08:30:20 +0100 (Fri, 18 Jan 2008) | 3 lines
      
        Coverity issue CID #197
        var_decl: Declared variable "stm" without initializer
        ninit_use_in_call: Using uninitialized value "stm" (field "stm".tm_zone uninitialized) in call to function "mktime"
      ........
        r60036 | christian.heimes | 2008-01-18 08:45:30 +0100 (Fri, 18 Jan 2008) | 11 lines
      
        Coverity issue CID #167
        Event alloc_fn: Called allocation function "metacompile" [model]
        Event var_assign: Assigned variable "gr" to storage returned from "metacompile"
        		gr = metacompile(n);
        Event pass_arg: Variable "gr" not freed or pointed-to in function "maketables" [model]
        		g = maketables(gr);
          		translatelabels(g);
          		addfirstsets(g);
        Event leaked_storage: Returned without freeing storage "gr"
        		return g;
      ........
        r60038 | christian.heimes | 2008-01-18 09:04:57 +0100 (Fri, 18 Jan 2008) | 3 lines
      
        Coverity issue CID #182
        size_error: Allocating 1 bytes to pointer "children", which needs at least 4 bytes
      ........
        r60041 | christian.heimes | 2008-01-18 09:47:59 +0100 (Fri, 18 Jan 2008) | 4 lines
      
        Coverity issue CID #169
        local_ptr_assign_local: Assigning address of stack variable "namebuf" to pointer "filename"
        out_of_scope: Variable "namebuf" goes out of scope
        use_invalid: Used "filename" pointing to out-of-scope variable "namebuf"
      ........
        r60042 | christian.heimes | 2008-01-18 09:53:45 +0100 (Fri, 18 Jan 2008) | 2 lines
      
        Coverity CID #168
        leaked_storage: Returned without freeing storage "fp"
      ........
      679db4aa
  2. 17 Ock, 2008 3 kayıt (commit)
  3. 16 Ock, 2008 1 kayıt (commit)
  4. 15 Ock, 2008 5 kayıt (commit)
    • Guido van Rossum's avatar
      Merged revisions 59952-59984 via svnmerge from · 7736b5be
      Guido van Rossum yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r59952 | thomas.heller | 2008-01-14 02:35:28 -0800 (Mon, 14 Jan 2008) | 1 line
      
        Issue 1821: configure libffi for amd64 on FreeeBSD.
      ........
        r59953 | andrew.kuchling | 2008-01-14 06:48:43 -0800 (Mon, 14 Jan 2008) | 1 line
      
        Update description of float_info
      ........
        r59959 | raymond.hettinger | 2008-01-14 14:58:05 -0800 (Mon, 14 Jan 2008) | 1 line
      
        Fix 1698398:  Zipfile.printdir() crashed because the format string expected a tuple object of length six instead of a time.struct_time object.
      ........
        r59961 | andrew.kuchling | 2008-01-14 17:29:16 -0800 (Mon, 14 Jan 2008) | 1 line
      
        Typo fixes
      ........
        r59962 | andrew.kuchling | 2008-01-14 17:29:44 -0800 (Mon, 14 Jan 2008) | 1 line
      
        Markup fix
      ........
        r59963 | andrew.kuchling | 2008-01-14 17:47:32 -0800 (Mon, 14 Jan 2008) | 1 line
      
        Add many items
      ........
        r59964 | andrew.kuchling | 2008-01-14 17:55:32 -0800 (Mon, 14 Jan 2008) | 1 line
      
        Repair unfinished sentence
      ........
        r59967 | raymond.hettinger | 2008-01-14 19:02:37 -0800 (Mon, 14 Jan 2008) | 5 lines
      
        Issue 1820:  structseq objects did not work with the % formatting operator or isinstance(t, tuple).
      
        Orignal patch (without tests) by Leif Walsh.
      ........
        r59968 | raymond.hettinger | 2008-01-14 19:07:42 -0800 (Mon, 14 Jan 2008) | 1 line
      
        Tighten the definition of a named tuple.
      ........
        r59969 | skip.montanaro | 2008-01-14 19:40:20 -0800 (Mon, 14 Jan 2008) | 3 lines
      
        Better (?) text describing the lack of guarantees provided by qsize(),
        empty() and full().
      ........
        r59970 | raymond.hettinger | 2008-01-14 21:39:59 -0800 (Mon, 14 Jan 2008) | 1 line
      
        Temporarily revert 59967 until GC can be added.
      ........
        r59971 | raymond.hettinger | 2008-01-14 21:46:43 -0800 (Mon, 14 Jan 2008) | 1 line
      
        Small grammar nit
      ........
        r59972 | georg.brandl | 2008-01-14 22:55:56 -0800 (Mon, 14 Jan 2008) | 2 lines
      
        Typo.
      ........
        r59973 | georg.brandl | 2008-01-14 22:58:15 -0800 (Mon, 14 Jan 2008) | 2 lines
      
        Remove duplicate entry.
      ........
        r59974 | jeffrey.yasskin | 2008-01-14 23:46:24 -0800 (Mon, 14 Jan 2008) | 12 lines
      
        Add rational.Rational as an implementation of numbers.Rational with infinite
        precision. This has been discussed at http://bugs.python.org/issue1682. It's
        useful primarily for teaching, but it also demonstrates how to implement a
        member of the numeric tower, including fallbacks for mixed-mode arithmetic.
      
        I expect to write a couple more patches in this area:
         * Rational.from_decimal()
         * Rational.trim/approximate() (maybe with different names)
         * Maybe remove the parentheses from Rational.__str__()
         * Maybe rename one of the Rational classes
         * Maybe make Rational('3/2') work.
      ........
        r59978 | andrew.kuchling | 2008-01-15 06:38:05 -0800 (Tue, 15 Jan 2008) | 8 lines
      
        Restore description of sys.dont_write_bytecode.
      
        The duplication is intentional -- this paragraph is in a section
        describing additions to the sys module, and there's a later section
        that mentions the switch.  I think most people scan the what's-new and
        don't read it in detail, so a bit of duplication is OK.
      ........
        r59984 | guido.van.rossum | 2008-01-15 09:59:29 -0800 (Tue, 15 Jan 2008) | 3 lines
      
        Issue #1786 (by myself): pdb should use its own stdin/stdout around an
        exec call and when creating a recursive instance.
      ........
      7736b5be
    • Raymond Hettinger's avatar
      ae138cbf
    • Guido van Rossum's avatar
      f7bd964f
    • Christian Heimes's avatar
    • Christian Heimes's avatar
      Fixed merge accident · 62fe8a8e
      Christian Heimes yazdı
      62fe8a8e
  5. 14 Ock, 2008 3 kayıt (commit)
    • Raymond Hettinger's avatar
      Remove Queue.empty() and Queue.full() in favor of using qsize() or trapping the… · da3caedc
      Raymond Hettinger yazdı
      Remove Queue.empty() and Queue.full() in favor of using qsize() or trapping the Empty and Full exceptions.
      da3caedc
    • Christian Heimes's avatar
      Merged revisions 59933-59951 via svnmerge from · d32ed6f5
      Christian Heimes yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r59935 | raymond.hettinger | 2008-01-13 07:15:15 +0100 (Sun, 13 Jan 2008) | 1 line
      
        Named tuple is a concept, not a specific type.
      ........
        r59936 | raymond.hettinger | 2008-01-13 07:18:07 +0100 (Sun, 13 Jan 2008) | 1 line
      
        Fix spelling.
      ........
        r59937 | georg.brandl | 2008-01-13 10:36:18 +0100 (Sun, 13 Jan 2008) | 2 lines
      
        Clarify the effect of text mode.
      ........
        r59938 | thomas.heller | 2008-01-13 12:19:43 +0100 (Sun, 13 Jan 2008) | 1 line
      
        Make Modules/socketobject.c compile for Windows again.
      ........
        r59939 | ka-ping.yee | 2008-01-13 12:25:13 +0100 (Sun, 13 Jan 2008) | 9 lines
      
        Check in the patch proposed by Ben Hayden (benjhayden) for issue
        #1550: help('modules') broken by several 3rd party libraries.
      
        Tested with Python build: trunk:54235:59936M -- the reported error
        occurs with Django installed (or with any __init__.py present on
        the path that raises an exception), and such errors indeed go away
        when this change is applied.
      ........
        r59940 | georg.brandl | 2008-01-13 16:04:05 +0100 (Sun, 13 Jan 2008) | 2 lines
      
        Back out r59931 - test_ctypes fails with it.
      ........
        r59943 | amaury.forgeotdarc | 2008-01-14 01:22:44 +0100 (Mon, 14 Jan 2008) | 6 lines
      
        As discussed in issue 1700288:
        ctypes takes some liberties when creating python types: it modifies the types'
        __dict__ directly, bypassing all the machinery of type objects which deal with
        special methods.  And this broke recent optimisations of method lookup.
        Now we try to modify the type with more "official" functions.
      ........
        r59944 | amaury.forgeotdarc | 2008-01-14 01:29:41 +0100 (Mon, 14 Jan 2008) | 5 lines
      
        Re-apply patch #1700288 (first applied in r59931, rolled back in r59940)
        now that ctypes uses a more supported method to create types:
      
        Method cache optimization, by Armin Rigo, ported to 2.6 by Kevin Jacobs.
      ........
        r59946 | amaury.forgeotdarc | 2008-01-14 02:07:27 +0100 (Mon, 14 Jan 2008) | 4 lines
      
        ?Why did my tests not notice this before?
        Slots inheritance is very different from OO inheritance.
        This code lead to infinite recursion on classes derived from StructType.
      ........
        r59947 | christian.heimes | 2008-01-14 04:33:52 +0100 (Mon, 14 Jan 2008) | 1 line
      
        Added new an better structseq representation. E.g. repr(time.gmtime(0)) now returns 'time.struct_time(tm_year=1970, tm_mon=1, tm_mday=1, tm_hour=0, tm_min=0, tm_sec=0, tm_wday=3, tm_yday=1, tm_isdst=0)' instead of '(1970, 1, 1, 0, 0, 0, 3, 1, 0)'. The feature is part of #1816: sys.flags
      ........
        r59948 | christian.heimes | 2008-01-14 04:35:38 +0100 (Mon, 14 Jan 2008) | 1 line
      
        I missed the most important file
      ........
        r59949 | christian.heimes | 2008-01-14 04:42:48 +0100 (Mon, 14 Jan 2008) | 1 line
      
        Applied patch #1816: sys.flags patch
      ........
        r59950 | christian.heimes | 2008-01-14 05:13:37 +0100 (Mon, 14 Jan 2008) | 2 lines
      
        Now that I've learnt about structseq objects I felt like converting sys.float_info to a structseq. It's
        readonly and help(sys.float_info) explains the attributes nicely.
      ........
        r59951 | christian.heimes | 2008-01-14 07:06:19 +0100 (Mon, 14 Jan 2008) | 1 line
      
        Added more comments to the new structseq repr code and implemented several of Neal's suggestions.
      ........
      d32ed6f5
    • Raymond Hettinger's avatar
  6. 13 Ock, 2008 1 kayıt (commit)
  7. 12 Ock, 2008 2 kayıt (commit)
    • Guido van Rossum's avatar
      f7ec7a81
    • Christian Heimes's avatar
      Merged revisions 59921-59932 via svnmerge from · a62da1da
      Christian Heimes yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r59923 | raymond.hettinger | 2008-01-11 19:04:55 +0100 (Fri, 11 Jan 2008) | 1 line
      
        Speed-up and simplify code urlparse's result objects.
      ........
        r59924 | andrew.kuchling | 2008-01-11 20:33:24 +0100 (Fri, 11 Jan 2008) | 1 line
      
        Bug #1790: update link; remove outdated paragraph
      ........
        r59925 | thomas.heller | 2008-01-11 20:34:06 +0100 (Fri, 11 Jan 2008) | 5 lines
      
        Raise an error instead of crashing with a segfault when a NULL
        function pointer is called.
      
        Will backport to release25-maint.
      ........
        r59927 | thomas.heller | 2008-01-11 21:29:19 +0100 (Fri, 11 Jan 2008) | 4 lines
      
        Fix a potential 'SystemError: NULL result without error'.
        NULL may be a valid return value from PyLong_AsVoidPtr.
      
        Will backport to release25-maint.
      ........
        r59928 | raymond.hettinger | 2008-01-12 00:25:18 +0100 (Sat, 12 Jan 2008) | 1 line
      
        Update the opcode docs for STORE_MAP and BUILD_MAP
      ........
        r59929 | mark.dickinson | 2008-01-12 02:56:00 +0100 (Sat, 12 Jan 2008) | 4 lines
      
        Issue 1780: Allow leading and trailing whitespace in Decimal constructor,
        when constructing from a string. Disallow trailing newlines in
        Context.create_decimal.
      ........
        r59930 | georg.brandl | 2008-01-12 11:53:29 +0100 (Sat, 12 Jan 2008) | 3 lines
      
        Move OSError docs to exceptions doc, remove obsolete descriptions
        from os docs, rework posix docs.
      ........
        r59931 | georg.brandl | 2008-01-12 14:47:57 +0100 (Sat, 12 Jan 2008) | 3 lines
      
        Patch #1700288: Method cache optimization, by Armin Rigo, ported to
        2.6 by Kevin Jacobs.
      ........
        r59932 | georg.brandl | 2008-01-12 17:11:09 +0100 (Sat, 12 Jan 2008) | 2 lines
      
        Fix editing glitch.
      ........
      a62da1da
  8. 11 Ock, 2008 5 kayıt (commit)
    • Christian Heimes's avatar
      Merged revisions 59883-59920 via svnmerge from · 25bb783c
      Christian Heimes yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r59887 | neal.norwitz | 2008-01-10 06:42:58 +0100 (Thu, 10 Jan 2008) | 1 line
      
        Reword entry, not sure I made it much better though.
      ........
        r59888 | andrew.kuchling | 2008-01-10 14:37:12 +0100 (Thu, 10 Jan 2008) | 1 line
      
        Check for fd of -1 to save fsync() and fstat() call
      ........
        r59891 | thomas.heller | 2008-01-10 19:45:40 +0100 (Thu, 10 Jan 2008) | 1 line
      
        Reflow a paragraph, and fix a typo.
      ........
        r59892 | raymond.hettinger | 2008-01-10 20:15:10 +0100 (Thu, 10 Jan 2008) | 1 line
      
        Examples for named tuple subclassing should include __slots__
      ........
        r59895 | raymond.hettinger | 2008-01-10 21:37:12 +0100 (Thu, 10 Jan 2008) | 1 line
      
        Clarify how to add a field to a named tuple.
      ........
        r59896 | amaury.forgeotdarc | 2008-01-10 22:59:42 +0100 (Thu, 10 Jan 2008) | 12 lines
      
        Closing issue1761.
        Surprising behaviour of the "$" regexp: it matches the
        end of the string, AND just before the newline at the end
        of the string::
      
            re.sub('$', '#', 'foo\n') == 'foo#\n#'
      
        Python is consistent with Perl and the pcre library, so
        we just document it.
        Guido prefers "\Z" to match only the end of the string.
      ........
        r59898 | raymond.hettinger | 2008-01-11 00:00:01 +0100 (Fri, 11 Jan 2008) | 1 line
      
        Neaten-up the named tuple docs
      ........
        r59900 | raymond.hettinger | 2008-01-11 01:23:13 +0100 (Fri, 11 Jan 2008) | 1 line
      
        Run doctests on the collections module
      ........
        r59903 | raymond.hettinger | 2008-01-11 02:25:54 +0100 (Fri, 11 Jan 2008) | 1 line
      
        Doctest results return a named tuple for readability
      ........
        r59904 | raymond.hettinger | 2008-01-11 03:12:33 +0100 (Fri, 11 Jan 2008) | 1 line
      
        Comment-out missing constant (from rev 59819)
      ........
        r59905 | raymond.hettinger | 2008-01-11 03:24:13 +0100 (Fri, 11 Jan 2008) | 1 line
      
        Have Decimal.as_tuple return a named tuple.
      ........
        r59906 | raymond.hettinger | 2008-01-11 04:04:50 +0100 (Fri, 11 Jan 2008) | 1 line
      
        Let most inspect functions return named tuples
      ........
        r59907 | raymond.hettinger | 2008-01-11 04:20:54 +0100 (Fri, 11 Jan 2008) | 1 line
      
        Improve usability of the SequenceMatcher by returning named tuples describing match ranges.
      ........
        r59909 | thomas.heller | 2008-01-11 09:04:03 +0100 (Fri, 11 Jan 2008) | 1 line
      
        Add an important missing blank.
      ........
        r59910 | georg.brandl | 2008-01-11 10:19:11 +0100 (Fri, 11 Jan 2008) | 2 lines
      
        Guard definition of TIPC_SUB_CANCEL with an #ifdef.
      ........
        r59911 | georg.brandl | 2008-01-11 10:20:58 +0100 (Fri, 11 Jan 2008) | 2 lines
      
        News entries for rev. 5990[567].
      ........
        r59912 | georg.brandl | 2008-01-11 10:55:53 +0100 (Fri, 11 Jan 2008) | 2 lines
      
        Documentation for r5990[3567].
      ........
        r59913 | thomas.heller | 2008-01-11 13:41:39 +0100 (Fri, 11 Jan 2008) | 4 lines
      
        The sqlite3 dll, when compiled in debug mode, must be linked with /MDd
        to use the debug runtime library.  Further, the dll will be named
        sqlite3_d.dll.
      ........
        r59919 | thomas.heller | 2008-01-11 16:38:46 +0100 (Fri, 11 Jan 2008) | 6 lines
      
        Revert revision 59913, because it was wrong:
      
          The sqlite3 dll, when compiled in debug mode, must be linked with
          /MDd to use the debug runtime library.  Further, the dll will be
          named sqlite3_d.dll.
      ........
        r59920 | christian.heimes | 2008-01-11 16:42:29 +0100 (Fri, 11 Jan 2008) | 1 line
      
        Removed unused variable
      ........
      25bb783c
    • Georg Brandl's avatar
      Fix markup. · 222e1279
      Georg Brandl yazdı
      222e1279
    • Christian Heimes's avatar
      Good catch Neal! · 3540b508
      Christian Heimes yazdı
      I completely forgot about pyo files and the tests are usually not run with -O. The modified code checks for *.py?
      3540b508
    • Eric Smith's avatar
      61ecb776
    • Eric Smith's avatar
  9. 10 Ock, 2008 2 kayıt (commit)
    • Christian Heimes's avatar
      Fixed print -> print() · 0041223f
      Christian Heimes yazdı
      0041223f
    • Christian Heimes's avatar
      Merged revisions 59864-59882 via svnmerge from · 454f37be
      Christian Heimes yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r59866 | raymond.hettinger | 2008-01-09 04:02:23 +0100 (Wed, 09 Jan 2008) | 1 line
      
        Syntax highlighting only works when >>> lines are accompanied by ... lines
      ........
        r59867 | fred.drake | 2008-01-09 04:11:28 +0100 (Wed, 09 Jan 2008) | 2 lines
      
        minor cleaning
      ........
        r59868 | raymond.hettinger | 2008-01-09 04:13:20 +0100 (Wed, 09 Jan 2008) | 1 line
      
        Fix typo
      ........
        r59869 | thomas.heller | 2008-01-09 12:19:19 +0100 (Wed, 09 Jan 2008) | 1 line
      
        Set the output file in the _ctypes Debug|x64 configuration.
      ........
        r59870 | andrew.kuchling | 2008-01-09 13:27:41 +0100 (Wed, 09 Jan 2008) | 1 line
      
        Related to patch #1114: fix another place where attr_t is assumed to be a long
      ........
        r59873 | christian.heimes | 2008-01-09 15:46:10 +0100 (Wed, 09 Jan 2008) | 1 line
      
        vs9to8 sync
      ........
        r59876 | christian.heimes | 2008-01-09 20:56:33 +0100 (Wed, 09 Jan 2008) | 1 line
      
        Fixed #1776. __import__() no longer imports modules by file name
      ........
        r59879 | thomas.heller | 2008-01-09 22:35:04 +0100 (Wed, 09 Jan 2008) | 6 lines
      
        Change amd64 buildbot scripts to use Visual Studio 2008, and
        to use the required versions of external sources.
        External sources are not yet built, so the build-step fails to
        built some targets.
      ........
        r59880 | thomas.heller | 2008-01-09 22:35:43 +0100 (Wed, 09 Jan 2008) | 6 lines
      
        Change amd64 buildbot scripts to use Visual Studio 2008, and
        to use the required versions of external sources.
        External sources are not yet built, so the build-step fails to
        built some targets.
      ........
      454f37be
  10. 09 Ock, 2008 1 kayıt (commit)
    • Christian Heimes's avatar
      Merged revisions 59843-59863 via svnmerge from · 2380ac74
      Christian Heimes yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r59844 | raymond.hettinger | 2008-01-07 21:56:05 +0100 (Mon, 07 Jan 2008) | 1 line
      
        Use get() instead of pop() for the optimized version of _replace().
      ........
        r59847 | raymond.hettinger | 2008-01-07 22:33:51 +0100 (Mon, 07 Jan 2008) | 1 line
      
        Documentation nits.
      ........
        r59849 | raymond.hettinger | 2008-01-08 03:02:05 +0100 (Tue, 08 Jan 2008) | 1 line
      
        Expand comment.
      ........
        r59850 | raymond.hettinger | 2008-01-08 03:24:15 +0100 (Tue, 08 Jan 2008) | 1 line
      
        Docs on named tuple's naming conventions and limits of subclassing
      ........
        r59851 | christian.heimes | 2008-01-08 04:40:04 +0100 (Tue, 08 Jan 2008) | 1 line
      
        It's verbose, not debug
      ........
        r59852 | facundo.batista | 2008-01-08 13:25:20 +0100 (Tue, 08 Jan 2008) | 4 lines
      
      
        Issue #1757: The hash of a Decimal instance is no longer affected
        by the current context.  Thanks Mark Dickinson.
      ........
        r59853 | andrew.kuchling | 2008-01-08 15:30:55 +0100 (Tue, 08 Jan 2008) | 1 line
      
        Patch 1137: allow assigning to .buffer_size attribute of PyExpat.parser objects
      ........
        r59854 | andrew.kuchling | 2008-01-08 15:56:02 +0100 (Tue, 08 Jan 2008) | 1 line
      
        Patch 1114: fix compilation of curses module on 64-bit AIX, and any other LP64 platforms where attr_t isn't a C long
      ........
        r59856 | thomas.heller | 2008-01-08 16:15:09 +0100 (Tue, 08 Jan 2008) | 5 lines
      
        Use relative instead of absolute filenames in the C-level tracebacks.
        This prevents traceback prints pointing to files in this way:
      
          File "\loewis\25\python\Modules\_ctypes\callbacks.c", line 206, in 'calling callback function'
      ........
        r59857 | christian.heimes | 2008-01-08 16:46:10 +0100 (Tue, 08 Jan 2008) | 2 lines
      
        Added __enter__ and __exit__ functions to HKEY object
        Added ExpandEnvironmentStrings to the _winreg module.
      ........
        r59858 | georg.brandl | 2008-01-08 17:18:26 +0100 (Tue, 08 Jan 2008) | 2 lines
      
        Fix markup errors from r59857 and clarify key.__enter__/__exit__ docs
      ........
        r59860 | georg.brandl | 2008-01-08 20:42:30 +0100 (Tue, 08 Jan 2008) | 2 lines
      
        Better method for associating .py files with the interpreter.
      ........
        r59862 | facundo.batista | 2008-01-08 22:10:12 +0100 (Tue, 08 Jan 2008) | 9 lines
      
      
        Issue 846388. Adds a call to PyErr_CheckSignals to
        SRE_MATCH so that signal handlers can be invoked during
        long regular expression matches.  It also adds a new
        error return value indicating that an exception
        occurred in a signal handler during the match, allowing
        exceptions in the signal handler to propagate up to the
        main loop.  Thanks Josh Hoyt and Ralf Schmitt.
      ........
      2380ac74
  11. 07 Ock, 2008 13 kayıt (commit)
  12. 06 Ock, 2008 3 kayıt (commit)