summaryrefslogtreecommitdiffstats
path: root/PCbuild/pcbuild.sln
Commit message (Collapse)AuthorAgeFilesLines
* Updates PCBuild.sln to open with VS 2015 by default.Steve Dower2015-05-201-2/+2
|
* Make bdist_wininst build only on demandSteve Dower2014-12-161-3/+1
|
* Issue #22919: Windows build updated to support VC 14.0 (Visual Studio 2015), ↵Steve Dower2014-11-221-163/+134
| | | | which will be used for the official 3.5 release.
* Issue #21017: Enable Tix debug build on WindowsZachary Ware2014-03-221-0/+2
|
* Issue #15968: Incorporated Tcl, Tk, and Tix builds into the Windows buildZachary Ware2014-03-221-0/+52
| | | | | | | | | | | | | | | | solution. Currently, Tix is not built in Debug configuration. This change also: - simplifies some Tcl/Tk-related msbuild properties for _tkinter - copies the Tcl and Tk DLLs into the build output directory, meaning they will always be available after a build without having to copy them manually or change PATH - removes PCbuild/build_tkinter.py: the solution does the build without needing to invoke Python (so Tcl/Tk/Tix can be built in parallel with the rest of the build using the `/m` msbuild command line switch) - removes an outdated README concerning building Tcl/Tk on AMD64
* Clean up PCbuild/pcbuild.sln a bit:Zachary Ware2014-03-191-32/+14
| | | | | | - Remove configuration settings from removed _sha3.vcxproj - Don't try to build configurations of _testembed that don't exist (namely, PGInstrument and PGUpdate)
* Revert accidental deletion of _overlapped.Martin v. Löwis2014-01-031-0/+2
|
* * Issue #16113: Remove sha3 module again.Martin v. Löwis2014-01-031-4/+0
| | | | Patch by Christian Heimes, with modifications.
* Close #19439: execute embedding tests on WindowsNick Coghlan2013-11-031-0/+18
| | | | Patch by Zachary Ware
* Update more configurations in pcbuild.sln.Richard Oudkerk2013-10-181-0/+6
|
* Update pcbuild.sln to build _overlapped.Richard Oudkerk2013-10-181-16/+10
|
* Initial checkin of asyncio package (== Tulip, == PEP 3156).Guido van Rossum2013-10-171-0/+2
|
* Fix #14470. Remove w9xpopen per PEP 11.Brian Curtin2012-12-231-2/+0
| | | | | | | | | As stated in PEP 11, 3.4 removes code on Windows platforms where COMSPEC points to command.com. The w9xpopen project in Visual Studio was added to support that case, and there was a special case in subprocess to cover that situation. This change removes the w9xpopen project from the Visual Studio solution and removes any references to the w9xpopen executable.
* Issue #16421: allow to load multiple modules from the same shared object.Andrew Svetlov2012-12-141-0/+18
| | | | Patch by Václav Šmilauer.
* correct build configuration of sha3 project for debug buildsChristian Heimes2012-10-071-3/+4
|
* Issue #16133: add Windows project file for _sha3 module. I choose to build ↵Christian Heimes2012-10-061-0/+17
| | | | _sha3 as a sparat module as it's rather large (190k for AMD64).
* Add missing PGI/PGO configurations for pywlauncher.Martin v. Löwis2012-08-241-0/+1
|
* Issue #15431: Drop _freeze_importlib from all build configurations,Martin v. Löwis2012-07-281-6/+0
| | | | to prevent constant regeneration of importlib.h.
* Issue #15431: Add _freeze_importlib project to regenerate importlib.h on ↵Martin v. Löwis2012-07-281-0/+16
| | | | | | Windows. Patch by Kristján Valur Jónsson.
* Create PGInstrument/PGUpdate configurations for py.exe and pyw.exeMartin v. Löwis2012-06-261-24/+15
|
* Remove associator project - it's not neededBrian Curtin2012-06-211-2/+0
|
* Build and bundle the 32-bit launcher in all configurations.Martin v. Löwis2012-06-211-8/+8
|
* Add associatorBrian Curtin2012-06-211-0/+14
|
* Add the pyw launcherBrian Curtin2012-06-201-0/+16
|
* Get 64-bit buildingBrian Curtin2012-06-201-2/+4
|
* Initial changes to get the py launcher buildingBrian Curtin2012-06-201-0/+14
|
* Issue 14821:Kristján Valur Jónsson2012-05-201-12/+0
| | | | | | | If a dependency is expressed both in the .sln file and the .vcxproj file msbuild is confused. Removing the .sln dependencies which are deprecated anyway. See: http://blogs.msdn.com/b/visualstudio/archive/2010/12/21/incorrect-solution-build-ordering-when-using-msbuild-exe.aspx
* Clean up the PCBuild project files, removing redundant settings andKristján Valur Jónsson2012-05-191-2/+2
| | | | | use "references" to link to dependent projects. Update readme and batch files.
* Don't build xxlimited in debug mode.Martin v. Löwis2012-05-141-2/+0
|
* changeset: 76969:0cbe1099226dBrian Curtin2012-05-131-6/+6
| | | | | | | | branch: vs2010 tag: tip user: Brian Curtin <brian@python.org> date: Sun May 13 16:15:11 2012 -0500 summary: Changes to allow Profile Guided Optimization builds to succeed on VS2010
* Fix #13210. Port the Windows build from VS2008 to VS2010.Brian Curtin2012-05-131-128/+56
|
* Issue #7652: Integrate the decimal floating point libmpdec library to speedStefan Krah2012-03-211-0/+21
| | | | | up the decimal module. Performance gains of the new C implementation are between 12x and 80x, depending on the application.
* Enable PGI/PGO builds for x64 python3.dllMartin v. Löwis2012-03-041-6/+6
|
* - Issue #10181: New memoryview implementation fixes multiple ownershipStefan Krah2012-02-251-0/+21
| | | | | | | | | | | | | | | | | | and lifetime issues of dynamically allocated Py_buffer members (#9990) as well as crashes (#8305, #7433). Many new features have been added (See whatsnew/3.3), and the documentation has been updated extensively. The ndarray test object from _testbuffer.c implements all aspects of PEP-3118, so further development towards the complete implementation of the PEP can proceed in a test-driven manner. Thanks to Nick Coghlan, Antoine Pitrou and Pauli Virtanen for review and many ideas. - Issue #12834: Fix incorrect results of memoryview.tobytes() for non-contiguous arrays. - Issue #5231: Introduce memoryview.cast() method that allows changing format and shape without making a copy of the underlying memory.
* Issue #6715: Add module for compression using the LZMA algorithm.Nadeem Vawda2011-11-291-0/+21
|
* Issue #5863: Rewrite BZ2File in pure Python, and allow it to acceptAntoine Pitrou2011-04-031-1/+1
| | | | | file-like objects using a new `fileobj` constructor argument. Patch by Nadeem Vawda.
* Automate build for python3.dll.Martin v. Löwis2010-12-051-11/+7
| | | | Package missing files.
* I hope this will fix Win2008(x64) buildbot error.Hirokazu Yamamoto2010-12-041-19/+25
|
* Merge branches/pep-0384.Martin v. Löwis2010-12-031-0/+33
|
* Issue #9552: Avoid unnecessary rebuild of OpenSSL. (Windows)Hirokazu Yamamoto2010-09-241-0/+23
|
* Merged revisions 73998 via svnmerge fromAmaury Forgeot d'Arc2009-07-131-537/+537
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r73998 | amaury.forgeotdarc | 2009-07-13 21:14:17 +0200 (lun., 13 juil. 2009) | 3 lines Set svn:eol-style=CRLF on all Visual Studio solution files. This should allow direct compilation from a downloaded source tar ball. ........
* #3791: Remove bsddb from the Windows msi installer,Amaury Forgeot d'Arc2008-09-091-21/+0
| | | | | | And do not compile the core bsddb library. Reviewed by Martin von Loewis.
* Remove _bsddb project on py3k (_bsddb44 project remains and builds). As ↵Mark Hammond2008-09-041-23/+0
| | | | | | discussed with Barry etc on #python-dev
* Revert a bad change I made in r64209, which probably broke compilation on win64Amaury Forgeot d'Arc2008-07-021-9/+17
|
* Merged revisions 64202 via svnmerge fromAmaury Forgeot d'Arc2008-06-121-17/+9
| | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r64202 | amaury.forgeotdarc | 2008-06-12 23:58:20 +0200 (jeu., 12 juin 2008) | 5 lines Update VS8.0 build files, using the script vs9to8.py. Also remove references to odbc libraries, which are not shipped with vs2003 express. (and certainly not useful) ........
* Merged revisions 64197 via svnmerge fromAmaury Forgeot d'Arc2008-06-121-17/+17
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r64197 | amaury.forgeotdarc | 2008-06-12 22:27:42 +0200 (jeu., 12 juin 2008) | 3 lines It seems that my VS2008 Express does not include a project in the build configuration, if its UUID has lowercase letters. ........
* Merged revisions 64123 via svnmerge fromBenjamin Peterson2008-06-111-0/+21
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r64123 | benjamin.peterson | 2008-06-11 11:50:57 -0500 (Wed, 11 Jun 2008) | 2 lines fix Windows building for multiprocessing ........
* Merged revisions 62805,62811,62841-62842,62848-62849,62853-62854 via ↵Christian Heimes2008-05-081-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r62805 | christian.heimes | 2008-05-07 01:59:53 +0200 (Wed, 07 May 2008) | 1 line Re-added getbuildinfo.c solution item ........ r62811 | benjamin.peterson | 2008-05-07 04:23:43 +0200 (Wed, 07 May 2008) | 2 lines update .bzrignore ........ r62841 | christian.heimes | 2008-05-08 00:54:17 +0200 (Thu, 08 May 2008) | 1 line Replace more float hacks with correct math functions ........ r62842 | benjamin.peterson | 2008-05-08 01:11:54 +0200 (Thu, 08 May 2008) | 2 lines Practice EAFP, and revert 62787 ........ r62848 | raymond.hettinger | 2008-05-08 06:35:20 +0200 (Thu, 08 May 2008) | 1 line Frozensets do not benefit from autoconversion. ........ r62849 | raymond.hettinger | 2008-05-08 06:36:12 +0200 (Thu, 08 May 2008) | 1 line The __all__ variable forgot to expose the gcd() function. ........ r62853 | raymond.hettinger | 2008-05-08 09:23:30 +0200 (Thu, 08 May 2008) | 1 line Fix-up the enumerate type example and move it to the end. ........ r62854 | ronald.oussoren | 2008-05-08 12:34:39 +0200 (Thu, 08 May 2008) | 3 lines Fix for issue 1770190: platform.mac_ver() now returns the right version on OSX 10.4.10 ........
* Merged revisions 62734,62736,62748,62769 via svnmerge fromChristian Heimes2008-05-081-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r62734 | brett.cannon | 2008-05-05 22:21:38 +0200 (Mon, 05 May 2008) | 5 lines Add the 'json' package. Code taken from simplejson 1.9 and contributed by Bob Ippolito. Closes issue #2750. ........ r62736 | georg.brandl | 2008-05-05 22:53:39 +0200 (Mon, 05 May 2008) | 2 lines Fix JSON module docs. ........ r62748 | benjamin.peterson | 2008-05-06 04:51:10 +0200 (Tue, 06 May 2008) | 2 lines PEP 8 nits in json package ........ r62769 | christian.heimes | 2008-05-06 18:18:41 +0200 (Tue, 06 May 2008) | 2 lines Intern static string Use float constructors instead of magic code for float constants ........
* Merged revisions ↵Christian Heimes2008-04-091-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 62194,62197-62198,62204-62205,62214,62219-62221,62227,62229-62231,62233-62235,62237-62239 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r62194 | jeffrey.yasskin | 2008-04-07 01:04:28 +0200 (Mon, 07 Apr 2008) | 7 lines Add enough debugging information to diagnose failures where the HandlerBException is ignored, and fix one such problem, where it was thrown during the __del__ method of the previous Popen object. We may want to find a better way of printing verbose information so it's not spammy when the test passes. ........ r62197 | mark.hammond | 2008-04-07 03:53:39 +0200 (Mon, 07 Apr 2008) | 2 lines Issue #2513: enable 64bit cross compilation on windows. ........ r62198 | mark.hammond | 2008-04-07 03:59:40 +0200 (Mon, 07 Apr 2008) | 2 lines correct heading underline for new "Cross-compiling on Windows" section ........ r62204 | gregory.p.smith | 2008-04-07 08:33:21 +0200 (Mon, 07 Apr 2008) | 4 lines Use the new PyFile_IncUseCount & PyFile_DecUseCount calls appropriatly within the standard library. These modules use PyFile_AsFile and later release the GIL while operating on the previously returned FILE*. ........ r62205 | mark.summerfield | 2008-04-07 09:39:23 +0200 (Mon, 07 Apr 2008) | 4 lines changed "2500 components" to "several thousand" since the number keeps growning:-) ........ r62214 | georg.brandl | 2008-04-07 20:51:59 +0200 (Mon, 07 Apr 2008) | 2 lines #2525: update timezone info examples in the docs. ........ r62219 | andrew.kuchling | 2008-04-08 01:57:07 +0200 (Tue, 08 Apr 2008) | 1 line Write PEP 3127 section; add items ........ r62220 | andrew.kuchling | 2008-04-08 01:57:21 +0200 (Tue, 08 Apr 2008) | 1 line Typo fix ........ r62221 | andrew.kuchling | 2008-04-08 03:33:10 +0200 (Tue, 08 Apr 2008) | 1 line Typographical fix: 32bit -> 32-bit, 64bit -> 64-bit ........ r62227 | andrew.kuchling | 2008-04-08 23:22:53 +0200 (Tue, 08 Apr 2008) | 1 line Add items ........ r62229 | amaury.forgeotdarc | 2008-04-08 23:27:42 +0200 (Tue, 08 Apr 2008) | 7 lines Issue2564: Prevent a hang in "import test.autotest", which runs the entire test suite as a side-effect of importing the module. - in test_capi, a thread tried to import other modules - re.compile() imported sre_parse again on every call. ........ r62230 | amaury.forgeotdarc | 2008-04-08 23:51:57 +0200 (Tue, 08 Apr 2008) | 2 lines Prevent an error when inspect.isabstract() is called with something else than a new-style class. ........ r62231 | amaury.forgeotdarc | 2008-04-09 00:07:05 +0200 (Wed, 09 Apr 2008) | 8 lines Issue 2408: remove the _types module It was only used as a helper in types.py to access types (GetSetDescriptorType and MemberDescriptorType), when they can easily be obtained with python code. These expressions even work with Jython. I don't know what the future of the types module is; (cf. discussion in http://bugs.python.org/issue1605 ) at least this change makes it simpler. ........ r62233 | amaury.forgeotdarc | 2008-04-09 01:10:07 +0200 (Wed, 09 Apr 2008) | 2 lines Add a NEWS entry for previous checkin ........ r62234 | trent.nelson | 2008-04-09 01:47:30 +0200 (Wed, 09 Apr 2008) | 37 lines - Issue #2550: The approach used by client/server code for obtaining ports to listen on in network-oriented tests has been refined in an effort to facilitate running multiple instances of the entire regression test suite in parallel without issue. test_support.bind_port() has been fixed such that it will always return a unique port -- which wasn't always the case with the previous implementation, especially if socket options had been set that affected address reuse (i.e. SO_REUSEADDR, SO_REUSEPORT). The new implementation of bind_port() will actually raise an exception if it is passed an AF_INET/SOCK_STREAM socket with either the SO_REUSEADDR or SO_REUSEPORT socket option set. Furthermore, if available, bind_port() will set the SO_EXCLUSIVEADDRUSE option on the socket it's been passed. This currently only applies to Windows. This option prevents any other sockets from binding to the host/port we've bound to, thus removing the possibility of the 'non-deterministic' behaviour, as Microsoft puts it, that occurs when a second SOCK_STREAM socket binds and accepts to a host/port that's already been bound by another socket. The optional preferred port parameter to bind_port() has been removed. Under no circumstances should tests be hard coding ports! test_support.find_unused_port() has also been introduced, which will pass a temporary socket object to bind_port() in order to obtain an unused port. The temporary socket object is then closed and deleted, and the port is returned. This method should only be used for obtaining an unused port in order to pass to an external program (i.e. the -accept [port] argument to openssl's s_server mode) or as a parameter to a server-oriented class that doesn't give you direct access to the underlying socket used. Finally, test_support.HOST has been introduced, which should be used for the host argument of any relevant socket calls (i.e. bind and connect). The following tests were updated to following the new conventions: test_socket, test_smtplib, test_asyncore, test_ssl, test_httplib, test_poplib, test_ftplib, test_telnetlib, test_socketserver, test_asynchat and test_socket_ssl. It is now possible for multiple instances of the regression test suite to run in parallel without issue. ........ r62235 | gregory.p.smith | 2008-04-09 02:25:17 +0200 (Wed, 09 Apr 2008) | 3 lines Fix zlib crash from zlib.decompressobj().flush(val) when val was not positive. It tried to allocate negative or zero memory. That fails. ........ r62237 | trent.nelson | 2008-04-09 02:34:53 +0200 (Wed, 09 Apr 2008) | 1 line Fix typo with regards to self.PORT shadowing class variables with the same name. ........ r62238 | andrew.kuchling | 2008-04-09 03:08:32 +0200 (Wed, 09 Apr 2008) | 1 line Add items ........ r62239 | jerry.seutter | 2008-04-09 07:07:58 +0200 (Wed, 09 Apr 2008) | 1 line Changed test so it no longer runs as a side effect of importing. ........