Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
b59e4425
Commit
b59e4425
authored
Feb 18, 2014
by
Zachary Ware
Browse files
Options
Browse Files
Download
Plain Diff
Issue #20609: Merge with 3.3.
parents
8e7761ec
9e5a9876
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
46 additions
and
8 deletions
+46
-8
Misc/NEWS
Misc/NEWS
+6
-0
PCbuild/pythoncore.vcxproj
PCbuild/pythoncore.vcxproj
+40
-8
No files found.
Misc/NEWS
View file @
b59e4425
...
...
@@ -61,6 +61,12 @@ Tests
-
Issue
#
20605
:
Make
test_socket
getaddrinfo
OS
X
segfault
test
more
robust
.
Build
-----
-
Issue
#
20609
:
Restored
the
ability
to
build
64
-
bit
Windows
binaries
on
32
-
bit
Windows
,
which
was
broken
by
the
change
in
issue
#
19788.
What
's New in Python 3.4.0 release candidate 1?
===============================================
...
...
PCbuild/pythoncore.vcxproj
View file @
b59e4425
...
...
@@ -182,7 +182,11 @@
<BaseAddress>
0x1e000000
</BaseAddress>
</Link>
<PreBuildEvent>
<Command>
$(KillPythonExe)
</Command>
<Command>
$(KillPythonExe)
IF %ERRORLEVEL% NEQ 0 (
echo kill_python: warning: could not kill running Pythons, exit code %ERRORLEVEL%
exit /b 0
)
</Command>
</PreBuildEvent>
<PreBuildEvent>
<Message>
Killing any running $(PythonExe) instances...
</Message>
...
...
@@ -213,7 +217,11 @@
<BaseAddress>
0x1e000000
</BaseAddress>
</Link>
<PreBuildEvent>
<Command>
$(KillPythonExe)
</Command>
<Command>
$(KillPythonExe)
IF %ERRORLEVEL% NEQ 0 (
echo kill_python: warning: could not kill running Pythons, exit code %ERRORLEVEL%
exit /b 0
)
</Command>
</PreBuildEvent>
<PreBuildEvent>
<Message>
Killing any running $(PythonExe) instances...
</Message>
...
...
@@ -244,7 +252,11 @@
<BaseAddress>
0x1e000000
</BaseAddress>
</Link>
<PreBuildEvent>
<Command>
$(KillPythonExe)
</Command>
<Command>
$(KillPythonExe)
IF %ERRORLEVEL% NEQ 0 (
echo kill_python: warning: could not kill running Pythons, exit code %ERRORLEVEL%
exit /b 0
)
</Command>
</PreBuildEvent>
<PreBuildEvent>
<Message>
Killing any running $(PythonExe) instances...
</Message>
...
...
@@ -278,7 +290,11 @@
<BaseAddress>
0x1e000000
</BaseAddress>
</Link>
<PreBuildEvent>
<Command>
$(KillPythonExe)
</Command>
<Command>
$(KillPythonExe)
IF %ERRORLEVEL% NEQ 0 (
echo kill_python: warning: could not kill running Pythons, exit code %ERRORLEVEL%
exit /b 0
)
</Command>
</PreBuildEvent>
<PreBuildEvent>
<Message>
Killing any running $(PythonExe) instances...
</Message>
...
...
@@ -307,7 +323,11 @@
<BaseAddress>
0x1e000000
</BaseAddress>
</Link>
<PreBuildEvent>
<Command>
$(KillPythonExe)
</Command>
<Command>
$(KillPythonExe)
IF %ERRORLEVEL% NEQ 0 (
echo kill_python: warning: could not kill running Pythons, exit code %ERRORLEVEL%
exit /b 0
)
</Command>
</PreBuildEvent>
<PreBuildEvent>
<Message>
Killing any running $(PythonExe) instances...
</Message>
...
...
@@ -339,7 +359,11 @@
<TargetMachine>
MachineX64
</TargetMachine>
</Link>
<PreBuildEvent>
<Command>
$(KillPythonExe)
</Command>
<Command>
$(KillPythonExe)
IF %ERRORLEVEL% NEQ 0 (
echo kill_python: warning: could not kill running Pythons, exit code %ERRORLEVEL%
exit /b 0
)
</Command>
</PreBuildEvent>
<PreBuildEvent>
<Message>
Killing any running $(PythonExe) instances...
</Message>
...
...
@@ -368,7 +392,11 @@
<BaseAddress>
0x1e000000
</BaseAddress>
</Link>
<PreBuildEvent>
<Command>
$(KillPythonExe)
</Command>
<Command>
$(KillPythonExe)
IF %ERRORLEVEL% NEQ 0 (
echo kill_python: warning: could not kill running Pythons, exit code %ERRORLEVEL%
exit /b 0
)
</Command>
</PreBuildEvent>
<PreBuildEvent>
<Message>
Killing any running $(PythonExe) instances...
</Message>
...
...
@@ -400,7 +428,11 @@
<TargetMachine>
MachineX64
</TargetMachine>
</Link>
<PreBuildEvent>
<Command>
$(KillPythonExe)
</Command>
<Command>
$(KillPythonExe)
IF %ERRORLEVEL% NEQ 0 (
echo kill_python: warning: could not kill running Pythons, exit code %ERRORLEVEL%
exit /b 0
)
</Command>
</PreBuildEvent>
<PreBuildEvent>
<Message>
Killing any running $(PythonExe) instances...
</Message>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment