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
b828e5c9
Commit
b828e5c9
authored
Aug 16, 2010
by
Barry Warsaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue 9568: Fix test_urllib2_localnet on OS X 10.3.
parent
29a66bdc
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
Mac/Modules/_scproxy.c
Mac/Modules/_scproxy.c
+1
-1
Misc/NEWS
Misc/NEWS
+4
-2
No files found.
Mac/Modules/_scproxy.c
View file @
b828e5c9
...
@@ -73,7 +73,7 @@ get_proxy_settings(PyObject* mod __attribute__((__unused__)))
...
@@ -73,7 +73,7 @@ get_proxy_settings(PyObject* mod __attribute__((__unused__)))
v
=
PyBool_FromLong
(
cfnum_to_int32
(
aNum
));
v
=
PyBool_FromLong
(
cfnum_to_int32
(
aNum
));
}
}
}
else
{
}
else
{
v
=
PyBool_FromLong
(
1
);
v
=
PyBool_FromLong
(
0
);
}
}
if
(
v
==
NULL
)
goto
error
;
if
(
v
==
NULL
)
goto
error
;
...
...
Misc/NEWS
View file @
b828e5c9
...
@@ -4,8 +4,8 @@ Python News
...
@@ -4,8 +4,8 @@ Python News
(editors: check NEWS.help for information about editing NEWS using ReST.)
(editors: check NEWS.help for information about editing NEWS using ReST.)
What's New in Python 2.6.6?
What's New in Python 2.6.6
rc 2
?
===========================
===========================
=====
*Release date: XXXX-XX-XX*
*Release date: XXXX-XX-XX*
...
@@ -26,6 +26,8 @@ Library
...
@@ -26,6 +26,8 @@ Library
Extension Modules
Extension Modules
-----------------
-----------------
- Issue #9568: Fix test_urllib2_localnet on OS X 10.3.
- Issue #7567: Don't call `setupterm' twice.
- Issue #7567: Don't call `setupterm' twice.
Tests
Tests
...
...
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