Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-30860: Move windows.h include out of internal/*.h. (#3458) | Eric Snow | 2017-09-12 | 1 | -16/+15 |
| | | | PR #3397 introduced a large number of warnings to the Windows build. This patch fixes them. | ||||
* | bpo-30860: Consolidate stateful runtime globals. (#3397) | Eric Snow | 2017-09-08 | 1 | -12/+14 |
| | | | | | | | * group the (stateful) runtime globals into various topical structs * consolidate the topical structs under a single top-level _PyRuntimeState struct * add a check-c-globals.py script that helps identify runtime globals Other globals are excluded (see globals.txt and check-c-globals.py). | ||||
* | Remove all mention of Windows IA-64 support (GH-3389) | Zachary Ware | 2017-09-06 | 1 | -8/+1 |
| | | | It was mostly removed long ago. | ||||
* | bpo-30946: Remove obsolete fallback code in readline module (#2738) | Antoine Pitrou | 2017-07-18 | 1 | -3/+0 |
| | | | | | | | | | | * Remove obsolete fallback code in readline module * Add NEWS * Remove obsolete include * Fix macro on Windows | ||||
* | bpo-29585: Fix sysconfig.get_config_var("PYTHONFRAMEWORK") (GH-2483) | INADA Naoki | 2017-06-29 | 1 | -1/+1 |
| | | | | | | | | | | | `PYTHONFRAMEWORK` is defined in `Makefile` and it shoulnd't be used in `pyconfig.h`. `sysconfig.py --generate-posix-vars` reads config vars from Makefile and `pyconfig.h`. Conflicting variables should be avoided. Especially, string config variables in Makefile are unquoted, but in `pyconfig.h` are keep quoted. So it should be private (starts with underscore). | ||||
* | bpo-23451: Fix socket deprecation warnings in socketmodule.c (#2318) | Segev Finer | 2017-06-28 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | | | * bpo-23451: Fix WSASocket and WSADuplicateSocket deprecation warnings * bpo-23451: Add backwards compatibility note about socket share/fromshare * bpo-23451: Fixed `WSAAddressToString`/`WSAStringToAddress` deprecation warnings * bpo-23451: Use `inet_pton`/`inet_ntop` instead of `WSAAddressToString`/`WSAStringToAddress` * bpo-23451: Move `HAVE_INET_PTON` from _socket.vcxproj to pyconfig.h * bpo-23451: Add SUPPRESS_DEPRECATED_CALL to socketmodule.c * bpo-23451: Add a NEWS.d entry * bpo-23451: Corrected NEWS.d entry | ||||
* | bpo-29585: Define PYTHONFRAMEWORK in PC/pyconfig.h (#2477) | Victor Stinner | 2017-06-28 | 1 | -49/+52 |
| | | | | | | | | | | * bpo-29585: Fix PC/pyconfig.h whitespaces Run "make patchcheck". * bpo-29585: Define PYTHONFRAMEWORK in PC/pyconfig.h * site: Fix path separator in _get_path() on Windows | ||||
* | bpo-26121: Use C library implementation for math functions erf() and erfc() ↵ | Serhiy Storchaka | 2017-03-12 | 1 | -0/+6 |
| | | | | on Windows. (#632) | ||||
* | Bump to 3.7.0a0 | Ned Deily | 2016-09-12 | 1 | -2/+2 |
| | |||||
* | hardcode sizeof(_Bool) on windows | Benjamin Peterson | 2016-09-07 | 1 | -0/+3 |
| | |||||
* | require standard int types to be defined (#17884) | Benjamin Peterson | 2016-09-06 | 1 | -33/+4 |
| | |||||
* | replace PY_LONG_LONG with long long | Benjamin Peterson | 2016-09-06 | 1 | -3/+2 |
| | |||||
* | Issue #27355: Removed support for Windows CE. It was never finished, | Larry Hastings | 2016-09-05 | 1 | -47/+0 |
| | | | | and Windows CE is no longer a relevant platform for Python. | ||||
* | Merge typo fixes from 3.5 | Martin Panter | 2016-05-08 | 1 | -1/+1 |
|\ | |||||
| * | Corrections for a/an in code comments and documentation | Martin Panter | 2016-05-08 | 1 | -1/+1 |
| | | |||||
* | | Closes #24953: Merge with 3.5 | Zachary Ware | 2015-08-29 | 1 | -0/+8 |
|\ \ | |/ | |||||
| * | Issue #24953: Include ICC version in sys.version string when bulit with ICC ↵ | Zachary Ware | 2015-08-29 | 1 | -0/+8 |
| | | | | | | | | on Windows | ||||
| * | Reverting my previous commit. | Yury Selivanov | 2015-05-30 | 1 | -2/+2 |
|/ | | | | Something went horribly wrong when I was doing `hg rebase`. | ||||
* | Update Windows build for 3.6 | Zachary Ware | 2015-05-28 | 1 | -2/+2 |
| | |||||
* | Issue #23451: Update pyconfig.h for Windows to require Vista headers and ↵ | Steve Dower | 2015-03-02 | 1 | -3/+3 |
| | | | | remove unnecessary version checks. | ||||
* | #22980 Adds platform and version tags to .pyd files | Steve Dower | 2014-12-16 | 1 | -0/+4 |
| | |||||
* | Issue #22919: Windows build updated to support VC 14.0 (Visual Studio 2015), ↵ | Steve Dower | 2014-11-22 | 1 | -0/+7 |
| | | | | which will be used for the official 3.5 release. | ||||
* | Issue #22592: Drop support of the Borland C compiler to build Python | Victor Stinner | 2014-10-22 | 1 | -29/+0 |
| | | | | The distutils module still supports it to build extensions. | ||||
* | Issue #21958: Merge with 3.4 | Zachary Ware | 2014-07-25 | 1 | -0/+5 |
|\ | |||||
| * | Issue #21958: Define HAVE_ROUND when building with VS 2013 and above. | Zachary Ware | 2014-07-25 | 1 | -0/+5 |
| | | | | | | | | Patch by Zachary Turner. | ||||
* | | Closes #21713: Merge with 3.4 | Zachary Ware | 2014-06-11 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Issue #21713: Fix typo in a comment. Found by Joseph Shen. | Zachary Ware | 2014-06-11 | 1 | -1/+1 |
| | | |||||
| * | Issue #20221: Removed conflicting (or circular) hypot definition | Zachary Ware | 2014-02-20 | 1 | -0/+4 |
| | | | | | | | | when compiled with VS 2010 or above. Initial patch by Tabrez Mohammed. | ||||
* | | Bump Windows build to 3.5 | Zachary Ware | 2014-03-17 | 1 | -2/+2 |
| | | |||||
* | | Issue #20221: Removed conflicting (or circular) hypot definition | Zachary Ware | 2014-02-20 | 1 | -0/+4 |
|\ \ | |/ |/| | | | when compiled with VS 2010 or above. Initial patch by Tabrez Mohammed. | ||||
| * | Issue #20221: Removed conflicting (or circular) hypot definition | Zachary Ware | 2014-02-20 | 1 | -0/+4 |
| | | | | | | | | when compiled with VS 2010 or above. Initial patch by Tabrez Mohammed. | ||||
* | | Issue #17791: Drop PREFIX and EXEC_PREFIX definitions from PC/pyconfig.h | Christian Heimes | 2013-11-20 | 1 | -2/+0 |
| | | |||||
* | | Issue #18783: Removed existing mentions of Python long type in docstrings, | Serhiy Storchaka | 2013-08-27 | 1 | -1/+1 |
|\ \ | |/ | | | | | error messages and comments. | ||||
| * | Issue #18783: Removed existing mentions of Python long type in docstrings, | Serhiy Storchaka | 2013-08-27 | 1 | -1/+1 |
| | | | | | | | | error messages and comments. | ||||
* | | Issue #17931: Resolve confusion on Windows between pids and process handles. | Richard Oudkerk | 2013-06-05 | 1 | -2/+2 |
| | | |||||
* | | Close #17931: Fix PyLong_FromPid() on Windows 64-bit: processes are identified | Victor Stinner | 2013-06-04 | 1 | -0/+3 |
| | | | | | | | | by their HANDLE which is a pointer (and not a long, which is smaller). | ||||
* | | Issue #17615: On Windows (VS2010), Performances of wmemcmp() to compare Unicode | Victor Stinner | 2013-04-09 | 1 | -3/+0 |
| | | | | | | | | | | | | | | | | strings are not convincing. For UCS2 (16-bit wchar_t type), use a dummy loop instead of wmemcmp(). The dummy loop is as fast, or a little bit faster. wchar_t is only 16-bit long on Windows. wmemcmp() is still used for 32-bit wchar_t. | ||||
* | | Issue #17615: Comparing two Unicode strings now uses wmemcmp() when possible | Victor Stinner | 2013-04-08 | 1 | -0/+3 |
| | | | | | | | | | | wmemcmp() is twice faster than a dummy loop (342 usec vs 744 usec) on Fedora 18/x86_64, GCC 4.7.2. | ||||
* | | Identify the ARM compiler. | Martin v. Löwis | 2013-01-29 | 1 | -1/+3 |
| | | |||||
* | | Drop support for Windows 2000; allow any XP API (but not Vista+). | Martin v. Löwis | 2013-01-25 | 1 | -7/+1 |
| | | | | | | | | | | Drop SDK version configuration for Tk compilation, to not bind it to W2k anymore. Binding it to XP would conflict with Tk's own binding of tkMenu to W2k. | ||||
* | | Bump version to 3.4.0 alpha 0. | Georg Brandl | 2012-09-29 | 1 | -2/+2 |
|/ | |||||
* | Fix #13210. Port the Windows build from VS2008 to VS2010. | Brian Curtin | 2012-05-13 | 1 | -2/+7 |
| | |||||
* | merge 3.2 | Matthias Klose | 2012-03-14 | 1 | -1/+1 |
|\ | |||||
| * | merge 3.1 | Matthias Klose | 2012-03-14 | 1 | -1/+1 |
| |\ | |||||
| | * | - rename configure.in to configure.ac | Matthias Klose | 2012-03-14 | 1 | -1/+1 |
| | | | | | | | | | | | | - change references from configure.in to configure.ac | ||||
| | * | Merged revisions 75537,75539 via svnmerge from | Antoine Pitrou | 2009-10-19 | 1 | -0/+5 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r75537 | antoine.pitrou | 2009-10-19 21:37:25 +0200 (lun., 19 oct. 2009) | 3 lines egreen is Derk Drukker + fix NEWS formatting ........ r75539 | antoine.pitrou | 2009-10-19 21:43:09 +0200 (lun., 19 oct. 2009) | 4 lines Issue #7080: locale.strxfrm() raises a MemoryError on 64-bit non-Windows platforms, and assorted locale fixes by Derk Drukker. ........ | ||||
* | | | Merge #13194: zlib.compressobj().copy() and zlib.decompressobj().copy() are ↵ | Nadeem Vawda | 2011-10-17 | 1 | -0/+3 |
|\ \ \ | |/ / | | | | | | | now available on Windows. | ||||
| * | | Issue #13194: zlib.compressobj().copy() and zlib.decompressobj().copy() are ↵ | Nadeem Vawda | 2011-10-17 | 1 | -0/+3 |
| | | | | | | | | | | | | now available on Windows. | ||||
* | | | Implement PEP 393. | Martin v. Löwis | 2011-09-28 | 1 | -4/+0 |
| | | | |||||
* | | | Issue #11863: Remove support for legacy systems deprecated in Python 3.2 | Antoine Pitrou | 2011-07-08 | 1 | -3/+0 |
| | | | | | | | | | | | | | | | (following PEP 11). These systems are systems using Mach C Threads, SunOS lightweight processes, GNU pth threads and IRIX threads. |