1. 03 Ara, 2008 1 kayıt (commit)
  2. 13 Haz, 2008 3 kayıt (commit)
    • Martin v. Löwis's avatar
      Merged revisions 64243-64244 via svnmerge from · 2061155d
      Martin v. Löwis yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r64243 | martin.v.loewis | 2008-06-13 20:12:51 +0200 (Fr, 13 Jun 2008) | 1 line
      
        Switch to SQLite 3.5.9.
      ........
        r64244 | martin.v.loewis | 2008-06-13 20:19:49 +0200 (Fr, 13 Jun 2008) | 1 line
      
        Update AMD64 build for amalgamated sqlite.
      ........
      2061155d
    • Martin v. Löwis's avatar
      Merged revisions 64239 via svnmerge from · 70ce8aae
      Martin v. Löwis yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r64239 | martin.v.loewis | 2008-06-13 19:22:39 +0200 (Fr, 13 Jun 2008) | 1 line
      
        Switch to bzip2 1.0.5.
      ........
      70ce8aae
    • 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
  3. 10 Haz, 2008 1 kayıt (commit)
    • Georg Brandl's avatar
      Merged revisions… · f78e02b7
      Georg Brandl yazdı
      Merged revisions 63562,63570,63728,63734,63784,63788,63802,63817,63827,63839,63887,63975,63998 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r63562 | martin.v.loewis | 2008-05-23 17:06:50 +0200 (Fri, 23 May 2008) | 2 lines
      
        Patch #1722225: Support QNX 6.
      ........
        r63570 | trent.nelson | 2008-05-23 22:33:14 +0200 (Fri, 23 May 2008) | 1 line
      
        Introduce a user macro named $(externalsDir), which should point to the root directory of where all the external sources should live.  Developers can change this value if their external sources live elsewhere.  The default of '..\..' matches the current status quo.
      ........
        r63728 | gregory.p.smith | 2008-05-26 23:16:34 +0200 (Mon, 26 May 2008) | 4 lines
      
        Fix issue2589: there was a potential integer overflow leading to
        memory corruption on esoteric platforms and incorrect behavior on
        normal platforms.
      ........
        r63734 | gregory.p.smith | 2008-05-27 00:07:28 +0200 (Tue, 27 May 2008) | 3 lines
      
        Fix issue2588: Do not execute str[size-1] = '\0' when a 0 size is
        passed in.  (The assert won't prevent this in non-debug builds).
      ........
        r63784 | raymond.hettinger | 2008-05-29 10:38:23 +0200 (Thu, 29 May 2008) | 1 line
      
        Fix two typos.
      ........
        r63788 | facundo.batista | 2008-05-29 18:39:26 +0200 (Thu, 29 May 2008) | 6 lines
      
      
        Fixed the semantic of timeout for socket.create_connection and
        all the upper level libraries that use it, including urllib2.
        Added and fixed some tests, and changed docs correspondingly.
        Thanks to John J Lee for the patch and the pusing, :)
      ........
        r63802 | mark.dickinson | 2008-05-30 04:46:53 +0200 (Fri, 30 May 2008) | 2 lines
      
        Fix typo in testSum
      ........
        r63817 | raymond.hettinger | 2008-05-30 20:20:50 +0200 (Fri, 30 May 2008) | 8 lines
      
        * Mark intermedidate computes values (hi, lo, yr) as volatile.
        * Expand comments.
        * Swap variable names in the sum_exact code so that x and y
          are consistently chosen as the larger and smaller magnitude
          values respectively.
      ........
        r63827 | raymond.hettinger | 2008-05-31 05:24:31 +0200 (Sat, 31 May 2008) | 1 line
      
        Implement heapq in terms of less-than (to match list.sort()).
      ........
        r63839 | gerhard.haering | 2008-05-31 23:33:27 +0200 (Sat, 31 May 2008) | 2 lines
      
        Fixed rowcount for SELECT statements. They're -1 now (again), for better DB-API 2.0 compliance.
      ........
        r63887 | gregory.p.smith | 2008-06-02 06:05:52 +0200 (Mon, 02 Jun 2008) | 4 lines
      
        Fix issue 2782: be less strict about the format string type in strftime.
        Accept unicode and anything else ParseTuple "s#" can deal with.  This
        matches the time.strftime behavior.
      ........
        r63975 | neal.norwitz | 2008-06-06 06:47:01 +0200 (Fri, 06 Jun 2008) | 3 lines
      
        Aldo Cortesi confirmed this is still needed for OpenBSD 4.2 and 4.3.
        (I didn't regen configure, since I don't have a working autoconf.)
      ........
        r63998 | raymond.hettinger | 2008-06-06 23:47:51 +0200 (Fri, 06 Jun 2008) | 1 line
      
        Issue 3501: Make heapq support both __le__ and __lt__.
      ........
      f78e02b7
  4. 19 Mar, 2008 1 kayıt (commit)
    • Christian Heimes's avatar
      Merged revisions… · d5e2b6f3
      Christian Heimes yazdı
      Merged revisions 61538-61540,61556,61559-61560,61563,61565,61571,61575-61576,61580-61582,61586,61591,61593,61595,61605-61606,61613-61616,61618,61621-61623,61625,61627,61631-61634 via svnmerge from
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r61538 | steven.bethard | 2008-03-18 20:03:50 +0100 (Di, 18 Mär 2008) | 1 line
      
        cell_compare needs to return -2 instead of NULL.
      ........
        r61539 | steven.bethard | 2008-03-18 20:04:32 +0100 (Di, 18 Mär 2008) | 1 line
      
        _have_soundcard() is a bad check for winsound.Beep, since you can have a soundcard but have the beep driver disabled. This revision basically disables the beep tests by wrapping them in a try/except. The Right Way To Do It is to come up with a _have_enabled_beep_driver() and use that.
      ........
        r61540 | gregory.p.smith | 2008-03-18 20:05:32 +0100 (Di, 18 Mär 2008) | 8 lines
      
        Fix chown on 64-bit linux.  It needed to take a long (64-bit on 64bit linux) as
        uid and gid input to accept values >=2**31 as valid while still accepting
        negative numbers to pass -1 to chown for "no change".
      
        Fixes issue1747858.
      
        This should be backported to release25-maint.
      ........
        r61556 | steven.bethard | 2008-03-18 20:59:14 +0100 (Di, 18 Mär 2008) | 1 line
      
        Fix test_atexit so that it still passes when -3 is supplied. (It was catching the warning messages on stdio from using the reload() function.)
      ........
        r61559 | neal.norwitz | 2008-03-18 21:30:38 +0100 (Di, 18 Mär 2008) | 1 line
      
        Import the test properly.  This is especially important for py3k.
      ........
        r61560 | gregory.p.smith | 2008-03-18 21:40:01 +0100 (Di, 18 Mär 2008) | 2 lines
      
        news entry for the chown fix
      ........
        r61563 | brett.cannon | 2008-03-18 22:12:42 +0100 (Di, 18 Mär 2008) | 2 lines
      
        Ignore BIG5HKSCS-2004.TXT which is downloaded as part of a test.
      ........
        r61565 | steven.bethard | 2008-03-18 22:30:13 +0100 (Di, 18 Mär 2008) | 1 line
      
        Have regrtest skip test_py3kwarn when the -3 flag is missing.
      ........
        r61571 | gregory.p.smith | 2008-03-18 23:27:41 +0100 (Di, 18 Mär 2008) | 4 lines
      
        Add a test to make sure zlib.crc32 and binascii.crc32 return the same thing.
        Fix a buglet in binascii.crc32, the second optional argument could previously
        have a signedness mismatch with the C variable its going into.
      ........
        r61575 | raymond.hettinger | 2008-03-19 00:22:29 +0100 (Mi, 19 Mär 2008) | 1 line
      
        Speed-up isinstance() for one easy case.
      ........
        r61576 | raymond.hettinger | 2008-03-19 00:33:08 +0100 (Mi, 19 Mär 2008) | 1 line
      
        Issue: 2354: Add 3K warning for the cmp argument to list.sort() and sorted().
      ........
        r61580 | andrew.kuchling | 2008-03-19 02:05:35 +0100 (Mi, 19 Mär 2008) | 1 line
      
        Add Jeff Rush
      ........
        r61581 | gregory.p.smith | 2008-03-19 02:38:35 +0100 (Mi, 19 Mär 2008) | 3 lines
      
        Mention that crc32 and adler32 are available in a different module (zlib).
        Some people look for them in hashlib.
      ........
        r61582 | gregory.p.smith | 2008-03-19 02:46:10 +0100 (Mi, 19 Mär 2008) | 3 lines
      
        Use zlib's crc32 routine instead of binascii when available.  zlib's is faster
        when compiled properly optimized and about the same speed otherwise.
      ........
        r61586 | david.wolever | 2008-03-19 03:26:57 +0100 (Mi, 19 Mär 2008) | 1 line
      
        Added my name to ACKS
      ........
        r61591 | gregory.p.smith | 2008-03-19 04:14:41 +0100 (Mi, 19 Mär 2008) | 5 lines
      
        Fix the struct module DeprecationWarnings that zipfile was triggering by
        removing all use of signed struct values.
      
        test_zipfile and test_zipfile64 pass.  no more warnings.
      ........
        r61593 | raymond.hettinger | 2008-03-19 04:56:59 +0100 (Mi, 19 Mär 2008) | 1 line
      
        Fix compiler warning.
      ........
        r61595 | martin.v.loewis | 2008-03-19 05:39:13 +0100 (Mi, 19 Mär 2008) | 2 lines
      
        Issue #2400: Allow relative imports to "import *".
      ........
        r61605 | martin.v.loewis | 2008-03-19 07:00:28 +0100 (Mi, 19 Mär 2008) | 2 lines
      
        Import relimport using a relative import.
      ........
        r61606 | trent.nelson | 2008-03-19 07:28:24 +0100 (Mi, 19 Mär 2008) | 1 line
      
        Issue2290: Support x64 Windows builds that live in pcbuild/amd64.  Without it, sysutils._python_build() returns the wrong directory, which causes the test_get_config_h_filename method in Lib/distutils/tests/test_sysconfig.py to fail.
      ........
        r61613 | trent.nelson | 2008-03-19 08:45:19 +0100 (Mi, 19 Mär 2008) | 3 lines
      
        Refine the Visual Studio 2008 build solution in order to improve how we deal with external components, as well as fixing outstanding issues with Windows x64 build support.  Introduce two new .vcproj files, _bsddb44.vcproj and sqlite3.vcproj, which replace the previous pre-link event scripts for _bsddb and _sqlite3 respectively.  The new project files inherit from our property files as if they were any other Python module.  This has numerous benefits.  First, the components get built with exactly the same compiler flags and settings as the rest of Python.  Second, it makes it much easier to debug problems in the external components when they're part of the build system.  Third, they'll benefit from profile guided optimisation in the release builds, just like the rest of Python core.
      
        I've also introduced a slightly new pattern for managing externals in subversion.  New components get checked in as <name>-<version>.x, where <version> matches the exact vendor version string.  After the initial import of the external component, the .x is tagged as .0 (i.e. tcl-8.4.18.x -> tcl-8.4.18.0).  Some components may not need any tweaking, whereas there are others that might (tcl/tk fall into this bucket).  In that case, the relevant modifications are made to the .x branch, which will be subsequently tagged as .1 (and then n+1 going forward) when they build successfully and all tests pass.  Buildbots will be converted to rely on these explicit tags only, which makes it easy for us to switch them over to a new version as and when required.  (Simple change to external(-amd64).bat: if we've bumped tcl to 8.4.18.1, change the .bat to rmdir 8.4.18.0 if it exists and check out a new .1 copy.)
      ........
        r61614 | trent.nelson | 2008-03-19 08:56:39 +0100 (Mi, 19 Mär 2008) | 1 line
      
        Remove extraneous apostrophe and semi-colon from AdditionalIncludeDirectories.
      ........
        r61615 | georg.brandl | 2008-03-19 08:56:40 +0100 (Mi, 19 Mär 2008) | 2 lines
      
        Remove footnote from versionchanged as it upsets LaTeX.
      ........
        r61616 | georg.brandl | 2008-03-19 08:57:57 +0100 (Mi, 19 Mär 2008) | 2 lines
      
        Another one.
      ........
        r61618 | trent.nelson | 2008-03-19 09:06:03 +0100 (Mi, 19 Mär 2008) | 1 line
      
        Fix the tcl-8.4.18.1 path and make sure we cd into the right directory when building tcl/tk.
      ........
        r61621 | trent.nelson | 2008-03-19 10:23:08 +0100 (Mi, 19 Mär 2008) | 1 line
      
        Lets have another try at getting the Windows buildbots in a consistent state before rebuilding using the new process.
      ........
        r61622 | eric.smith | 2008-03-19 13:09:55 +0100 (Mi, 19 Mär 2008) | 2 lines
      
        Use test.test_support.captured_stdout instead of a custom contextmanager.
        Thanks Nick Coghlan.
      ........
        r61623 | eric.smith | 2008-03-19 13:15:10 +0100 (Mi, 19 Mär 2008) | 1 line
      
        Trivial typo.
      ........
        r61625 | thomas.heller | 2008-03-19 17:10:57 +0100 (Mi, 19 Mär 2008) | 2 lines
      
        Checkout sqlite-source when it is not there.
      ........
        r61627 | brett.cannon | 2008-03-19 17:50:13 +0100 (Mi, 19 Mär 2008) | 5 lines
      
        test_nis would fail if test.test_support.verbose was true but NIS was not set
        up on the machine.
      
        Closes issue2411. Thanks Michael Bishop.
      ........
        r61631 | brett.cannon | 2008-03-19 18:37:43 +0100 (Mi, 19 Mär 2008) | 2 lines
      
        Use sys.py3kwarning instead of trying to trigger a Py3k-related warning.
      ........
        r61632 | raymond.hettinger | 2008-03-19 18:45:19 +0100 (Mi, 19 Mär 2008) | 1 line
      
        Issue 2354: Fix-up compare warning.  Patch contributed by Jeff Balogh.
      ........
        r61633 | raymond.hettinger | 2008-03-19 18:58:59 +0100 (Mi, 19 Mär 2008) | 1 line
      
        The filter() function does support a None argument in Py3.0.
      ........
        r61634 | raymond.hettinger | 2008-03-19 19:01:58 +0100 (Mi, 19 Mär 2008) | 1 line
      
        Remove itertools warnings I had added before the 2-to-3 handled the migration.
      ........
      d5e2b6f3
  5. 02 Ock, 2008 1 kayıt (commit)
    • Christian Heimes's avatar
      Merged revisions 59642-59665 via svnmerge from · 57dddfbb
      Christian Heimes yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r59653 | martin.v.loewis | 2008-01-01 22:05:17 +0100 (Tue, 01 Jan 2008) | 3 lines
      
        Return results from Python callbacks to Tcl as Tcl objects.
        Fixes Tk issue #1851526
      ........
        r59654 | martin.v.loewis | 2008-01-01 22:08:18 +0100 (Tue, 01 Jan 2008) | 4 lines
      
        Always convert Text.index result to string.
        This improves compatibility with Tcl 8.5, which would
        otherwise return textindex objects.
      ........
        r59655 | martin.v.loewis | 2008-01-01 22:09:07 +0100 (Tue, 01 Jan 2008) | 2 lines
      
        News item for r59653.
      ........
        r59656 | martin.v.loewis | 2008-01-02 00:00:00 +0100 (Wed, 02 Jan 2008) | 1 line
      
        Don't link with Tix; Tix is loaded dynamically by Tcl.
      ........
        r59657 | martin.v.loewis | 2008-01-02 00:00:48 +0100 (Wed, 02 Jan 2008) | 1 line
      
        Use Visual Studio 2009 on the build slaves.
      ........
        r59658 | martin.v.loewis | 2008-01-02 00:36:24 +0100 (Wed, 02 Jan 2008) | 1 line
      
        Test in PCbuild directory.
      ........
        r59661 | kurt.kaiser | 2008-01-02 05:11:28 +0100 (Wed, 02 Jan 2008) | 6 lines
      
        Issue1177
        r58207 and r58247 patch logic is reversed.  I noticed this when I
        tried to use urllib to retrieve a file which required auth.
      
        Fix that and add a test for 401 error to verify.
      ........
        r59662 | kurt.kaiser | 2008-01-02 06:23:38 +0100 (Wed, 02 Jan 2008) | 2 lines
      
        Change docstrings to comments so test output will display normally.
      ........
        r59665 | christian.heimes | 2008-01-02 18:43:40 +0100 (Wed, 02 Jan 2008) | 5 lines
      
        Removed PCbuild8/ directory and added a new build directory for VS 2005
        based on the VS 2008 build directory to PC/VS8.0. The script
        PCbuild/vs8to9.py was added to sync changes from PCbuild to PC/VS8.0.
      
        Kristjan, the initial creator of the PCbuild8 directory is fine with the replacement. I've moved the new version of the VS 2005 build directory next to the other legacy build directories. The new sync script is based on the work of wreck and syncs changes in the project, property and solution files.
      ........
      57dddfbb
  6. 31 Ara, 2007 2 kayıt (commit)
    • Christian Heimes's avatar
      Fixed svn merge issues · b6b3ecc1
      Christian Heimes yazdı
      b6b3ecc1
    • 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
  7. 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
  8. 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
  9. 06 Ara, 2007 1 kayıt (commit)
  10. 05 Ara, 2007 1 kayıt (commit)
    • Christian Heimes's avatar
      Merged revisions 59371-59375 via svnmerge from · 78672087
      Christian Heimes yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r59374 | georg.brandl | 2007-12-05 22:52:40 +0100 (Wed, 05 Dec 2007) | 2 lines
      
        Add Ross Light, a GHOP student, to ACKs.
      ........
        r59375 | christian.heimes | 2007-12-05 22:57:25 +0100 (Wed, 05 Dec 2007) | 2 lines
      
        The macros _WIN32, _WIN64 and _M_X64 are defined by the compiler. The VS 2008 IDE doesn't know about (some) of the macros and can display wrong information. In my case a section #ifdef _WIN64 was grayed out although the platform was x64. I've added the macros to pyproject.vsprops and x64.vsprops.
        I've also added a paragraph about the property files to the readme and fixed the order of pyupdate > pyinstrument.
      ........
      78672087
  11. 30 Kas, 2007 1 kayıt (commit)
    • Christian Heimes's avatar
      Merged revisions 59234-59238 via svnmerge from · d59c64c4
      Christian Heimes yazdı
      svn+ssh://pythondev@svn.python.org/python/trunk
      
      ........
        r59237 | facundo.batista | 2007-11-30 18:15:25 +0100 (Fri, 30 Nov 2007) | 4 lines
      
      
        Reordering of __new__ to minimize isinstance() calls to most
        used types. Thanks Mark Dickinson.
      ........
        r59238 | christian.heimes | 2007-11-30 20:18:08 +0100 (Fri, 30 Nov 2007) | 6 lines
      
        Removed or replaced some more deprecated preprocessor macros.
        Moved the _DEBUG and NDEBUG macros to two new property files.
        Fixed #1527 Problem with static libs on Windows
        Updated README.txt
      ........
      d59c64c4
  12. 24 Kas, 2007 1 kayıt (commit)
    • Christian Heimes's avatar
      Updated readme.txt · 3d9b5a5c
      Christian Heimes yazdı
      Added user macro for tcltk 64bit directory
      Redone some changes to the ssl project. From now on the _ssl project depends on a 32bit build of Python to aid cross compiling on a 32bit OS.
      3d9b5a5c
  13. 21 Kas, 2007 1 kayıt (commit)
  14. 20 Kas, 2007 2 kayıt (commit)
  15. 19 Kas, 2007 2 kayıt (commit)
  16. 17 Kas, 2007 1 kayıt (commit)
    • Christian Heimes's avatar
      Initial import of new PCbuild9 for VS 2008. It partly based on PCbuild and… · ad14d11a
      Christian Heimes yazdı
      Initial import of new PCbuild9 for VS 2008. It partly based on PCbuild and partly hand crafted with some idea from PCbuild8. I've recreated all the extension module projects.
      
      The new directory needs some more love and care but it works. I'm not able to test the AMD64 build.
      
      The new tree is heavily using the *.vcprops property sheets. Please set any global settings in the property sheets.
      ad14d11a