1. 23 Kas, 2013 1 kayıt (commit)
  2. 25 Ock, 2013 1 kayıt (commit)
  3. 31 May, 2012 1 kayıt (commit)
  4. 17 Ara, 2010 1 kayıt (commit)
  5. 28 Agu, 2010 1 kayıt (commit)
  6. 20 Şub, 2009 1 kayıt (commit)
  7. 13 Şub, 2009 1 kayıt (commit)
  8. 13 Haz, 2008 1 kayıt (commit)
    • Martin v. Löwis's avatar
      Merged revisions 64185-64196 via svnmerge from · f38e0d0c
      Martin v. Löwis yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r64185 | martin.v.loewis | 2008-06-12 20:38:47 +0200 (Do, 12 Jun 2008) | 1 line
      
        Switch to Tcl/Tk 8.5.2.
      ........
        r64189 | martin.v.loewis | 2008-06-12 20:52:00 +0200 (Do, 12 Jun 2008) | 1 line
      
        Switch to Tcl/Tk 8.5.
      ........
        r64191 | martin.v.loewis | 2008-06-12 21:00:14 +0200 (Do, 12 Jun 2008) | 1 line
      
        Revert bogus disabling of Tcl and Tk.
      ........
        r64194 | martin.v.loewis | 2008-06-12 21:51:59 +0200 (Do, 12 Jun 2008) | 1 line
      
        Split Tcl make targets into separate ones.
      ........
        r64195 | martin.v.loewis | 2008-06-12 22:06:18 +0200 (Do, 12 Jun 2008) | 1 line
      
        Support file names which include '+' (for Tk 8.5).
      ........
        r64196 | martin.v.loewis | 2008-06-12 22:07:53 +0200 (Do, 12 Jun 2008) | 1 line
      
        Fix Tcl/Tk license file in tcl8*/tk8*, include Tix license.
      ........
      f38e0d0c
  9. 12 Haz, 2008 2 kayıt (commit)
  10. 23 Şub, 2008 2 kayıt (commit)
    • Christian Heimes's avatar
      Merged revisions 60990-61002 via svnmerge from · 05e8be17
      Christian Heimes yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r60990 | eric.smith | 2008-02-23 17:05:26 +0100 (Sat, 23 Feb 2008) | 1 line
      
        Removed duplicate Py_CHARMASK define.  It's already defined in Python.h.
      ........
        r60991 | andrew.kuchling | 2008-02-23 17:23:05 +0100 (Sat, 23 Feb 2008) | 4 lines
      
        #1330538: Improve comparison of xmlrpclib.DateTime and datetime instances.
        Remove automatic handling of datetime.date and datetime.time.
        This breaks backward compatibility, but python-dev discussion was strongly
        against this automatic conversion; see the bug for a link.
      ........
        r60994 | andrew.kuchling | 2008-02-23 17:39:43 +0100 (Sat, 23 Feb 2008) | 1 line
      
        #835521: Add index entries for various pickle-protocol methods and attributes
      ........
        r60995 | andrew.kuchling | 2008-02-23 18:10:46 +0100 (Sat, 23 Feb 2008) | 2 lines
      
        #1433694: minidom's .normalize() failed to set .nextSibling for last element.
        Fix by Malte Helmert
      ........
        r61000 | christian.heimes | 2008-02-23 18:40:11 +0100 (Sat, 23 Feb 2008) | 1 line
      
        Patch #2167 from calvin: Remove unused imports
      ........
        r61001 | christian.heimes | 2008-02-23 18:42:31 +0100 (Sat, 23 Feb 2008) | 1 line
      
        Patch #1957: syslogmodule: Release GIL when calling syslog(3)
      ........
        r61002 | christian.heimes | 2008-02-23 18:52:07 +0100 (Sat, 23 Feb 2008) | 2 lines
      
        Issue #2051 and patch from Alexander Belopolsky:
        Permission for pyc and pyo files are inherited from the py file.
      ........
      05e8be17
    • Christian Heimes's avatar
      c5f05e45
  11. 11 Ock, 2008 2 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
    • Thomas Heller's avatar
      Add an important missing blank. · d17315f1
      Thomas Heller yazdı
      d17315f1
  12. 06 Ock, 2008 1 kayıt (commit)
    • Christian Heimes's avatar
      Merged revisions 59703-59773 via svnmerge from · faf2f63f
      Christian Heimes yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r59704 | christian.heimes | 2008-01-04 04:15:05 +0100 (Fri, 04 Jan 2008) | 1 line
      
        Moved include "Python.h" in front of other imports to silence a warning.
      ........
        r59706 | raymond.hettinger | 2008-01-04 04:22:53 +0100 (Fri, 04 Jan 2008) | 10 lines
      
        Minor fix-ups to named tuples:
      
        * Make the _replace() method respect subclassing.
      
        * Using property() to make _fields read-only wasn't a good idea.
          It caused len(Point._fields) to fail.
      
        * Add note to _cast() about length checking and alternative with the star-operator.
      ........
        r59707 | jeffrey.yasskin | 2008-01-04 09:01:23 +0100 (Fri, 04 Jan 2008) | 3 lines
      
        Make math.{floor,ceil}({int,long}) return float again for backwards
        compatibility after r59671 made them return integral types.
      ........
        r59709 | christian.heimes | 2008-01-04 14:21:07 +0100 (Fri, 04 Jan 2008) | 1 line
      
        Bug #1713: posixpath.ismount() claims symlink to a mountpoint is a mountpoint.
      ........
        r59712 | lars.gustaebel | 2008-01-04 15:00:33 +0100 (Fri, 04 Jan 2008) | 5 lines
      
        Issue #1735: TarFile.extractall() now correctly sets
        directory permissions and times.
      
        (will backport to 2.5)
      ........
        r59714 | andrew.kuchling | 2008-01-04 15:47:17 +0100 (Fri, 04 Jan 2008) | 1 line
      
        Update links to bug/patch tracker
      ........
        r59716 | christian.heimes | 2008-01-04 16:23:30 +0100 (Fri, 04 Jan 2008) | 1 line
      
        Added interface to Windows' WSAIoctl and a simple example for a network sniffer.
      ........
        r59717 | christian.heimes | 2008-01-04 16:29:00 +0100 (Fri, 04 Jan 2008) | 1 line
      
        And here is the rest of Hirokazu Yamamoto's patch for VS6.0 support. Thanks Hiro!
      ........
        r59719 | christian.heimes | 2008-01-04 16:34:06 +0100 (Fri, 04 Jan 2008) | 1 line
      
        Reverted last transaction. It's the wrong branch.
      ........
        r59721 | christian.heimes | 2008-01-04 16:48:06 +0100 (Fri, 04 Jan 2008) | 1 line
      
        socket.ioctl is only available on Windows
      ........
        r59722 | andrew.kuchling | 2008-01-04 19:24:41 +0100 (Fri, 04 Jan 2008) | 1 line
      
        Fix markup
      ........
        r59723 | andrew.kuchling | 2008-01-04 19:25:05 +0100 (Fri, 04 Jan 2008) | 1 line
      
        Fix markup
      ........
        r59725 | guido.van.rossum | 2008-01-05 01:59:59 +0100 (Sat, 05 Jan 2008) | 3 lines
      
        Patch #1725 by Mark Dickinson, fixes incorrect conversion of -1e1000
        and adds errors for -0x.
      ........
        r59726 | guido.van.rossum | 2008-01-05 02:21:57 +0100 (Sat, 05 Jan 2008) | 2 lines
      
        Patch #1698 by Senthil: allow '@' in username when parsed by urlparse.py.
      ........
        r59727 | raymond.hettinger | 2008-01-05 02:35:43 +0100 (Sat, 05 Jan 2008) | 1 line
      
        Improve namedtuple's _cast() method with a docstring, new name, and error-checking.
      ........
        r59728 | raymond.hettinger | 2008-01-05 03:17:24 +0100 (Sat, 05 Jan 2008) | 1 line
      
        Add error-checking to namedtuple's _replace() method.
      ........
        r59730 | fred.drake | 2008-01-05 05:38:38 +0100 (Sat, 05 Jan 2008) | 2 lines
      
        clean up a comment
      ........
        r59731 | jeffrey.yasskin | 2008-01-05 09:47:13 +0100 (Sat, 05 Jan 2008) | 11 lines
      
        Continue rolling back pep-3141 changes that changed behavior from 2.5. This
        round included:
         * Revert round to its 2.6 behavior (half away from 0).
         * Because round, floor, and ceil always return float again, it's no
           longer necessary to have them delegate to __xxx___, so I've ripped
           that out of their implementations and the Real ABC. This also helps
           in implementing types that work in both 2.6 and 3.0: you return int
           from the __xxx__ methods, and let it get enabled by the version
           upgrade.
         * Make pow(-1, .5) raise a ValueError again.
      ........
        r59736 | andrew.kuchling | 2008-01-05 16:13:49 +0100 (Sat, 05 Jan 2008) | 1 line
      
        Fix comment typo
      ........
        r59738 | thomas.heller | 2008-01-05 18:15:44 +0100 (Sat, 05 Jan 2008) | 1 line
      
        Add myself.
      ........
        r59739 | georg.brandl | 2008-01-05 18:49:17 +0100 (Sat, 05 Jan 2008) | 2 lines
      
        Fix C++-style comment.
      ........
        r59742 | georg.brandl | 2008-01-05 20:28:16 +0100 (Sat, 05 Jan 2008) | 2 lines
      
        Remove with_statement future imports from 2.6 docs.
      ........
        r59743 | georg.brandl | 2008-01-05 20:29:45 +0100 (Sat, 05 Jan 2008) | 2 lines
      
        Simplify index entries; fix #1712.
      ........
        r59744 | georg.brandl | 2008-01-05 20:44:22 +0100 (Sat, 05 Jan 2008) | 2 lines
      
        Doc patch #1730 from Robin Stocker; minor corrections mostly to os.rst.
      ........
        r59749 | georg.brandl | 2008-01-05 21:29:13 +0100 (Sat, 05 Jan 2008) | 2 lines
      
        Revert socket.rst to unix-eol.
      ........
        r59750 | georg.brandl | 2008-01-05 21:33:46 +0100 (Sat, 05 Jan 2008) | 2 lines
      
        Set native svn:eol-style property for text files.
      ........
        r59752 | georg.brandl | 2008-01-05 21:46:29 +0100 (Sat, 05 Jan 2008) | 2 lines
      
        #1719: capitalization error in "UuidCreate".
      ........
        r59753 | georg.brandl | 2008-01-05 22:02:25 +0100 (Sat, 05 Jan 2008) | 2 lines
      
        Repair markup.
      ........
        r59754 | georg.brandl | 2008-01-05 22:10:50 +0100 (Sat, 05 Jan 2008) | 2 lines
      
        Use markup.
      ........
        r59757 | christian.heimes | 2008-01-05 22:35:52 +0100 (Sat, 05 Jan 2008) | 1 line
      
        Final adjustments for #1601
      ........
        r59758 | guido.van.rossum | 2008-01-05 23:19:06 +0100 (Sat, 05 Jan 2008) | 3 lines
      
        Patch #1637: fix urlparse for URLs like 'http://x.com?arg=/foo'.
        Fix by John Nagle.
      ........
        r59759 | guido.van.rossum | 2008-01-05 23:20:01 +0100 (Sat, 05 Jan 2008) | 2 lines
      
        Add John Nagle (of issue #1637).
      ........
        r59765 | raymond.hettinger | 2008-01-06 10:02:24 +0100 (Sun, 06 Jan 2008) | 1 line
      
        Small code simplification.  Forgot that classmethods can be called from intances.
      ........
        r59766 | martin.v.loewis | 2008-01-06 11:09:48 +0100 (Sun, 06 Jan 2008) | 2 lines
      
        Use vcbuild for VS 2009.
      ........
        r59767 | martin.v.loewis | 2008-01-06 12:03:43 +0100 (Sun, 06 Jan 2008) | 2 lines
      
        Package using VS 2008.
      ........
        r59768 | martin.v.loewis | 2008-01-06 12:13:16 +0100 (Sun, 06 Jan 2008) | 2 lines
      
        Don't try to package msvcr90 for the moment.
      ........
        r59769 | georg.brandl | 2008-01-06 15:17:36 +0100 (Sun, 06 Jan 2008) | 4 lines
      
        #1696393: don't check for '.' and '..' in ntpath.walk since
        they aren't returned from os.listdir anymore.
        Reported by Michael Haggerty.
      ........
        r59770 | georg.brandl | 2008-01-06 15:27:15 +0100 (Sun, 06 Jan 2008) | 3 lines
      
        #1742: don't raise exception on os.path.relpath("a", "a"), but return os.curdir.
        Reported by Jesse Towner.
      ........
        r59771 | georg.brandl | 2008-01-06 15:33:52 +0100 (Sun, 06 Jan 2008) | 2 lines
      
        #1591: Clarify docstring of Popen3.
      ........
        r59772 | georg.brandl | 2008-01-06 16:30:34 +0100 (Sun, 06 Jan 2008) | 2 lines
      
        #1680: fix context manager example function name.
      ........
        r59773 | georg.brandl | 2008-01-06 16:34:57 +0100 (Sun, 06 Jan 2008) | 2 lines
      
        #1755097: document default values for [].sort() and sorted().
      ........
      faf2f63f
  13. 05 Ock, 2008 1 kayıt (commit)
  14. 31 Ara, 2007 2 kayıt (commit)
    • Christian Heimes's avatar
      Merged revisions 59605-59624 via svnmerge from · 5b5e81c6
      Christian Heimes yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r59606 | georg.brandl | 2007-12-29 11:57:00 +0100 (Sat, 29 Dec 2007) | 2 lines
      
        Some cleanup in the docs.
      ........
        r59611 | martin.v.loewis | 2007-12-29 19:49:21 +0100 (Sat, 29 Dec 2007) | 2 lines
      
        Bug #1699: Define _BSD_SOURCE only on OpenBSD.
      ........
        r59612 | raymond.hettinger | 2007-12-29 23:09:34 +0100 (Sat, 29 Dec 2007) | 1 line
      
        Simpler documentation for itertools.tee().  Should be backported.
      ........
        r59613 | raymond.hettinger | 2007-12-29 23:16:24 +0100 (Sat, 29 Dec 2007) | 1 line
      
        Improve docs for itertools.groupby().  The use of xrange(0) to create a unique object is less obvious than object().
      ........
        r59620 | christian.heimes | 2007-12-31 15:47:07 +0100 (Mon, 31 Dec 2007) | 3 lines
      
        Added wininst-9.0.exe executable for VS 2008
        Integrated bdist_wininst into PCBuild9 directory
      ........
        r59621 | christian.heimes | 2007-12-31 15:51:18 +0100 (Mon, 31 Dec 2007) | 1 line
      
        Moved PCbuild directory to PC/VS7.1
      ........
        r59622 | christian.heimes | 2007-12-31 15:59:26 +0100 (Mon, 31 Dec 2007) | 1 line
      
        Fix paths for build bot
      ........
        r59623 | christian.heimes | 2007-12-31 16:02:41 +0100 (Mon, 31 Dec 2007) | 1 line
      
        Fix paths for build bot, part 2
      ........
        r59624 | christian.heimes | 2007-12-31 16:18:55 +0100 (Mon, 31 Dec 2007) | 1 line
      
        Renamed PCBuild9 directory to PCBuild
      ........
      5b5e81c6
    • Christian Heimes's avatar
      3adfe9aa
  15. 19 Ara, 2007 1 kayıt (commit)
    • Christian Heimes's avatar
      Merged revisions 59541-59561 via svnmerge from · 99170a5d
      Christian Heimes yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r59544 | raymond.hettinger | 2007-12-18 01:13:45 +0100 (Tue, 18 Dec 2007) | 1 line
      
        Add more namedtuple() test cases.  Neaten the code and comments.
      ........
        r59545 | christian.heimes | 2007-12-18 04:38:03 +0100 (Tue, 18 Dec 2007) | 3 lines
      
        Fixed for #1601: IDLE not working correctly on Windows (Py30a2/IDLE30a1)
      
        Amaury's ideas works great. Should we build the Python core with WINVER=0x0500 and _WIN32_WINNT=0x0500, too?
      ........
        r59546 | christian.heimes | 2007-12-18 10:00:13 +0100 (Tue, 18 Dec 2007) | 1 line
      
        Make it a bit easier to test Tcl/Tk and idle from a build dir.
      ........
        r59547 | christian.heimes | 2007-12-18 10:12:10 +0100 (Tue, 18 Dec 2007) | 1 line
      
        Removed several unused files from the PCbuild9 directory. They are relics from the past.
      ........
        r59548 | raymond.hettinger | 2007-12-18 19:26:18 +0100 (Tue, 18 Dec 2007) | 29 lines
      
        Speed-up dictionary constructor by about 10%.
      
        New opcode, STORE_MAP saves the compiler from awkward stack manipulations
        and specializes for dicts using PyDict_SetItem instead of PyObject_SetItem.
      
        Old disassembly:
                      0 BUILD_MAP                0
                      3 DUP_TOP
                      4 LOAD_CONST               1 (1)
                      7 ROT_TWO
                      8 LOAD_CONST               2 ('x')
                     11 STORE_SUBSCR
                     12 DUP_TOP
                     13 LOAD_CONST               3 (2)
                     16 ROT_TWO
                     17 LOAD_CONST               4 ('y')
                     20 STORE_SUBSCR
      
        New disassembly:
                      0 BUILD_MAP                0
                      3 LOAD_CONST               1 (1)
                      6 LOAD_CONST               2 ('x')
                      9 STORE_MAP
                     10 LOAD_CONST               3 (2)
                     13 LOAD_CONST               4 ('y')
                     16 STORE_MAP
      ........
        r59549 | thomas.heller | 2007-12-18 20:00:34 +0100 (Tue, 18 Dec 2007) | 2 lines
      
        Issue #1642: Fix segfault in ctypes when trying to delete attributes.
      ........
        r59551 | guido.van.rossum | 2007-12-18 21:10:42 +0100 (Tue, 18 Dec 2007) | 2 lines
      
        Issue #1645 by Alberto Bertogli.  Fix a comment.
      ........
        r59553 | raymond.hettinger | 2007-12-18 22:24:09 +0100 (Tue, 18 Dec 2007) | 12 lines
      
        Give meaning to the oparg for BUILD_MAP:  estimated size of the dictionary.
      
        Allows dictionaries to be pre-sized (upto 255 elements) saving time lost
        to re-sizes with their attendant mallocs and re-insertions.
      
        Has zero effect on small dictionaries (5 elements or fewer), a slight
        benefit for dicts upto 22 elements (because they had to resize once
        anyway), and more benefit for dicts upto 255 elements (saving multiple
        resizes during the build-up and reducing the number of collisions on
        the first insertions).  Beyond 255 elements, there is no addional benefit.
      ........
        r59554 | christian.heimes | 2007-12-18 22:56:09 +0100 (Tue, 18 Dec 2007) | 1 line
      
        Fixed #1649: IDLE error: dictionary changed size during iteration
      ........
        r59557 | raymond.hettinger | 2007-12-18 23:21:27 +0100 (Tue, 18 Dec 2007) | 1 line
      
        Simplify and speedup _asdict() for named tuples.
      ........
        r59558 | christian.heimes | 2007-12-19 00:22:54 +0100 (Wed, 19 Dec 2007) | 3 lines
      
        Applied patch #1635: Float patch for inf and nan on Windows (and other platforms).
      
        The patch unifies float("inf") and repr(float("inf")) on all platforms.
      ........
        r59559 | raymond.hettinger | 2007-12-19 00:51:15 +0100 (Wed, 19 Dec 2007) | 1 line
      
        Users demand iterable input for named tuples. The author capitulates.
      ........
        r59560 | raymond.hettinger | 2007-12-19 01:21:06 +0100 (Wed, 19 Dec 2007) | 1 line
      
        Beef-up tests for dict literals
      ........
        r59561 | raymond.hettinger | 2007-12-19 01:27:21 +0100 (Wed, 19 Dec 2007) | 1 line
      
        Zap a duplicate line
      ........
      99170a5d
  16. 18 Ara, 2007 1 kayıt (commit)
  17. 08 Ara, 2007 1 kayıt (commit)
    • Christian Heimes's avatar
      Merged revisions 59376-59406 via svnmerge from · 255f53bd
      Christian Heimes yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r59377 | georg.brandl | 2007-12-06 01:24:23 +0100 (Thu, 06 Dec 2007) | 2 lines
      
        Add another GHOP student to ACKS.
      ........
        r59378 | raymond.hettinger | 2007-12-06 01:56:53 +0100 (Thu, 06 Dec 2007) | 5 lines
      
        Fix Issue 1045.
        Factor-out common calling code by simplifying the length_hint API.
        Speed-up the function by caching the PyObject_String for the attribute lookup.
      ........
        r59380 | georg.brandl | 2007-12-06 02:52:24 +0100 (Thu, 06 Dec 2007) | 2 lines
      
        Diverse markup fixes.
      ........
        r59383 | georg.brandl | 2007-12-06 10:45:39 +0100 (Thu, 06 Dec 2007) | 2 lines
      
        Better re.split examples.
      ........
        r59386 | christian.heimes | 2007-12-06 14:15:13 +0100 (Thu, 06 Dec 2007) | 2 lines
      
        Fixed get_config_h_filename for Windows. Without the patch it can't find the pyconfig.h file inside a build tree.
        Added several small unit tests for sysconfig.
      ........
        r59387 | christian.heimes | 2007-12-06 14:30:11 +0100 (Thu, 06 Dec 2007) | 1 line
      
        Silence more warnings, _CRT_NONSTDC_NO_DEPRECATE is already defined in pyconfig.h but several projects don't include it.
      ........
        r59389 | christian.heimes | 2007-12-06 14:55:01 +0100 (Thu, 06 Dec 2007) | 1 line
      
        Disabled one test that is failing on Unix
      ........
        r59399 | christian.heimes | 2007-12-06 22:13:06 +0100 (Thu, 06 Dec 2007) | 8 lines
      
        Several Windows related cleanups:
        * Removed a #define from pyconfig.h. The macro was already defined a few lines higher.
        * Fixed path to tix in the build_tkinter.py script
        * Changed make_buildinfo.c to use versions of unlink and strcat which are considered safe by Windows (as suggested by MvL).
        * Removed two defines from pyproject.vsprops that are no longer required. Both are defined in pyconfig.h and make_buildinfo.c doesn't use the unsafe versions any more (as suggested by MvL).
        * Added some more information about PGO and the property files to PCbuild9/readme.txt.
      
        Are you fine with the changes, Martin?
      ........
        r59400 | raymond.hettinger | 2007-12-07 02:53:01 +0100 (Fri, 07 Dec 2007) | 4 lines
      
        Don't have the docs berate themselves.  Keep a professional tone.
        If a todo is needed, put it in the tracker.
      ........
        r59402 | georg.brandl | 2007-12-07 10:07:10 +0100 (Fri, 07 Dec 2007) | 3 lines
      
        Increase unit test coverage of SimpleXMLRPCServer.
        Written for GHOP by Turkay Eren.
      ........
        r59406 | georg.brandl | 2007-12-07 16:16:57 +0100 (Fri, 07 Dec 2007) | 2 lines
      
        Update to windows doc from Robert.
      ........
      255f53bd
  18. 06 Ara, 2007 1 kayıt (commit)
    • Christian Heimes's avatar
      Several Windows related cleanups: · 3d2f564d
      Christian Heimes yazdı
      * Removed a #define from pyconfig.h. The macro was already defined a few lines higher.
      * Fixed path to tix in the build_tkinter.py script
      * Changed make_buildinfo.c to use versions of unlink and strcat which are considered safe by Windows (as suggested by MvL).
      * Removed two defines from pyproject.vsprops that are no longer required. Both are defined in pyconfig.h and make_buildinfo.c doesn't use the unsafe versions any more (as suggested by MvL).
      * Added some more information about PGO and the property files to PCbuild9/readme.txt.
      
      Are you fine with the changes, Martin?
      3d2f564d
  19. 05 Ara, 2007 4 kayıt (commit)
    • Christian Heimes's avatar
      Merged revisions 59333-59370 via svnmerge from · b9eccbfe
      Christian Heimes yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r59343 | georg.brandl | 2007-12-05 08:02:47 +0100 (Wed, 05 Dec 2007) | 2 lines
      
        Fix typo.
      ........
        r59347 | christian.heimes | 2007-12-05 13:31:44 +0100 (Wed, 05 Dec 2007) | 1 line
      
        Fixed quoting and paths in the sqlite project file
      ........
        r59348 | christian.heimes | 2007-12-05 13:45:11 +0100 (Wed, 05 Dec 2007) | 1 line
      
        Fixed error in regrtest. I must have missed the spot.
      ........
        r59350 | christian.heimes | 2007-12-05 13:49:14 +0100 (Wed, 05 Dec 2007) | 1 line
      
        merge -r59315:59316 from py3k: Fix issue #1553: An errornous __length_hint__ can make list() raise a SystemError
      ........
        r59352 | christian.heimes | 2007-12-05 13:52:34 +0100 (Wed, 05 Dec 2007) | 1 line
      
        Added msg to Misc/NEWS
      ........
        r59354 | andrew.kuchling | 2007-12-05 14:27:20 +0100 (Wed, 05 Dec 2007) | 1 line
      
        Spelling fix
      ........
        r59356 | georg.brandl | 2007-12-05 18:56:50 +0100 (Wed, 05 Dec 2007) | 3 lines
      
        Add examples to csv, pprint and traceback docs.
        Written by Ross for GHOP.
      ........
        r59358 | raymond.hettinger | 2007-12-05 19:11:08 +0100 (Wed, 05 Dec 2007) | 1 line
      
        Error checking was too aggressive (reported by Chris Tismer)
      ........
        r59359 | georg.brandl | 2007-12-05 19:30:48 +0100 (Wed, 05 Dec 2007) | 2 lines
      
        Add examples to re docs. Written for GHOP by Dan Finnie.
      ........
        r59366 | georg.brandl | 2007-12-05 20:49:21 +0100 (Wed, 05 Dec 2007) | 2 lines
      
        Fix markup.
      ........
        r59367 | christian.heimes | 2007-12-05 20:57:54 +0100 (Wed, 05 Dec 2007) | 1 line
      
        Updated documentation and build_tkinter.py script
      ........
        r59368 | georg.brandl | 2007-12-05 21:03:57 +0100 (Wed, 05 Dec 2007) | 2 lines
      
        Another markup fix.
      ........
        r59369 | ronald.oussoren | 2007-12-05 21:07:36 +0100 (Wed, 05 Dec 2007) | 7 lines
      
        This "fixes" compilation issues for the Carbon._OSA module on OSX Leopard
        by purging bindings to OSA's debug API's. Those APIs we're completely
        unsupported on OSX 10.4 and are no longer available on OSX 10.5.
      
        Note that this patches a generated file. This is somewhat acceptable because
        regenerating the file is non-trivial and wouldn't use system headers anyway.
      ........
        r59370 | christian.heimes | 2007-12-05 21:10:38 +0100 (Wed, 05 Dec 2007) | 1 line
      
        Fixed bug #1557 by using popen.communicate() before popen.wait()
      ........
      b9eccbfe
    • Christian Heimes's avatar
      4c07cd9d
    • Christian Heimes's avatar
      Reverted two commit accidents · 60d388d9
      Christian Heimes yazdı
      60d388d9
    • Christian Heimes's avatar
      68e36862
  20. 27 Kas, 2007 1 kayıt (commit)
  21. 24 Kas, 2007 1 kayıt (commit)