]> granicus.if.org Git - python/log
python
12 years agoClose #13072: Restore code before the PEP 393 for the array module
Victor Stinner [Sun, 5 Aug 2012 22:46:05 +0000 (00:46 +0200)]
Close #13072: Restore code before the PEP 393 for the array module

'u' format of the array module uses again Py_UNICODE type for backward
compatibility with Python 3.2.

The only change from Python 3.2 is that PyUnicode_AsUnicode() result is now
checked for NULL value.

12 years agomerge heads
Ned Deily [Sun, 5 Aug 2012 22:16:04 +0000 (15:16 -0700)]
merge heads

12 years agoIssue #15560: Fix building _sqlite3 extension on OS X with an SDK.
Ned Deily [Sun, 5 Aug 2012 22:13:33 +0000 (15:13 -0700)]
Issue #15560: Fix building _sqlite3 extension on OS X with an SDK.

12 years agoIssue #15560: null merge
Ned Deily [Sun, 5 Aug 2012 22:12:20 +0000 (15:12 -0700)]
Issue #15560: null merge

12 years agomerge heads
Benjamin Peterson [Sun, 5 Aug 2012 22:05:53 +0000 (15:05 -0700)]
merge heads

12 years agoadd another testcase
Benjamin Peterson [Sun, 5 Aug 2012 22:05:34 +0000 (15:05 -0700)]
add another testcase

12 years agoIssue #15560: Fix building _sqlite3 extension on OS X with an SDK.
Ned Deily [Sun, 5 Aug 2012 21:56:21 +0000 (14:56 -0700)]
Issue #15560: Fix building _sqlite3 extension on OS X with an SDK.

12 years agoWhat's New in Python 3.3: Split improved and new modules, start to write a summary
Victor Stinner [Sun, 5 Aug 2012 14:37:12 +0000 (16:37 +0200)]
What's New in Python 3.3: Split improved and new modules, start to write a summary

12 years agoComplete What's New in Python 3.3.
Victor Stinner [Sun, 5 Aug 2012 14:31:32 +0000 (16:31 +0200)]
Complete What's New in Python 3.3.

12 years agoIssue #15548: Update and complete What's New in Python 3.3, especially the "os" section
Victor Stinner [Sun, 5 Aug 2012 13:56:51 +0000 (15:56 +0200)]
Issue #15548: Update and complete What's New in Python 3.3, especially the "os" section

12 years agoos.unlinkat() has been removed, update os.fwalk() doc
Victor Stinner [Sun, 5 Aug 2012 13:18:02 +0000 (15:18 +0200)]
os.unlinkat() has been removed, update os.fwalk() doc

12 years agoMerge
Antoine Pitrou [Sun, 5 Aug 2012 12:53:49 +0000 (14:53 +0200)]
Merge

12 years agoFix CGI tests to take into account the platform's line ending (issue #13119)
Antoine Pitrou [Sun, 5 Aug 2012 12:53:33 +0000 (14:53 +0200)]
Fix CGI tests to take into account the platform's line ending (issue #13119)

12 years agoFix CGI tests to take into account the platform's line ending (issue #13119)
Antoine Pitrou [Sun, 5 Aug 2012 12:52:45 +0000 (14:52 +0200)]
Fix CGI tests to take into account the platform's line ending (issue #13119)

12 years agoIssue #14814: Attempt to clarify network address and broadcast address for less exper...
Nick Coghlan [Sun, 5 Aug 2012 12:52:38 +0000 (22:52 +1000)]
Issue #14814: Attempt to clarify network address and broadcast address for less experienced users

12 years ago#15546: Also fix GzipFile.peek().
Nadeem Vawda [Sun, 5 Aug 2012 12:45:41 +0000 (14:45 +0200)]
#15546: Also fix GzipFile.peek().

12 years agoIssue #14814: Remove redundant property from interface objects - prefixlen can be...
Nick Coghlan [Sun, 5 Aug 2012 12:45:22 +0000 (22:45 +1000)]
Issue #14814: Remove redundant property from interface objects - prefixlen can be accessed via the associated network object

12 years agoIssue #14814: Finish review of ipaddress network object docs (initial patch was by...
Nick Coghlan [Sun, 5 Aug 2012 12:32:37 +0000 (22:32 +1000)]
Issue #14814: Finish review of ipaddress network object docs (initial patch was by Eli Bendersky)

12 years agoIssue 14814: Docs work showed some more cases of networks pretending to be addresses...
Nick Coghlan [Sun, 5 Aug 2012 12:02:18 +0000 (22:02 +1000)]
Issue 14814: Docs work showed some more cases of networks pretending to be addresses and highlighted the weird approach to implementing the 'is_whatever' properties. Impl now illustrates far more clearly that networks have a property if both their network and broadcast addresses have that property

12 years agoNEWS entry for previous ipaddress fix
Nick Coghlan [Sun, 5 Aug 2012 10:43:19 +0000 (20:43 +1000)]
NEWS entry for previous ipaddress fix

12 years agoClose #15559: Implementing __index__ creates a nasty interaction with the bytes const...
Nick Coghlan [Sun, 5 Aug 2012 08:20:17 +0000 (18:20 +1000)]
Close #15559: Implementing __index__ creates a nasty interaction with the bytes constructor. At least for 3.3, ipaddress objects must now be explicitly converted with int() and thus can't be passed directly to the hex() builtin.

12 years ago#15546: Fix {GzipFile,LZMAFile}.read1()'s handling of pathological input data.
Nadeem Vawda [Sun, 5 Aug 2012 00:19:09 +0000 (02:19 +0200)]
#15546: Fix {GzipFile,LZMAFile}.read1()'s handling of pathological input data.

12 years agoFix test_venv to work with universal newlines (issue #13119)
Antoine Pitrou [Sat, 4 Aug 2012 22:33:10 +0000 (00:33 +0200)]
Fix test_venv to work with universal newlines (issue #13119)

12 years agoMerge universal newlines-related fixes (issue #13119)
Antoine Pitrou [Sat, 4 Aug 2012 22:25:31 +0000 (00:25 +0200)]
Merge universal newlines-related fixes (issue #13119)

12 years agoFix universal newlines test to avoid the newline translation done by sys.stdout.
Antoine Pitrou [Sat, 4 Aug 2012 22:23:40 +0000 (00:23 +0200)]
Fix universal newlines test to avoid the newline translation done by sys.stdout.

12 years agoFix test_sys under Windows (issue #13119)
Antoine Pitrou [Sat, 4 Aug 2012 22:15:06 +0000 (00:15 +0200)]
Fix test_sys under Windows (issue #13119)

12 years agoRemove unused variable `trim_get_code`.
Antoine Pitrou [Sat, 4 Aug 2012 21:26:25 +0000 (23:26 +0200)]
Remove unused variable `trim_get_code`.

12 years agoIssue #12655: Mention multiprocessing.cpu_count() in os.sched_getaffinity() doc
Victor Stinner [Sat, 4 Aug 2012 18:57:48 +0000 (20:57 +0200)]
Issue #12655: Mention multiprocessing.cpu_count() in os.sched_getaffinity() doc

12 years agoIssue #13052: Fix IDLE crashing when replace string in Search/Replace dialog ended...
Andrew Svetlov [Sat, 4 Aug 2012 18:42:48 +0000 (21:42 +0300)]
Issue #13052: Fix IDLE crashing when replace string in Search/Replace dialog ended with '\'.

Patch by Roger Serwy.

12 years agoIssue #13052: Fix IDLE crashing when replace string in Search/Replace dialog ended...
Andrew Svetlov [Sat, 4 Aug 2012 18:38:22 +0000 (21:38 +0300)]
Issue #13052: Fix IDLE crashing when replace string in Search/Replace dialog ended with '\'.

Patch by Roger Serwy.

12 years agomerge with 3.2
Sandro Tosi [Sat, 4 Aug 2012 17:42:46 +0000 (19:42 +0200)]
merge with 3.2

12 years agoadd missing period; thanks to Gaston Fiore from docs@
Sandro Tosi [Sat, 4 Aug 2012 17:42:24 +0000 (19:42 +0200)]
add missing period; thanks to Gaston Fiore from docs@

12 years agoMerge
Antoine Pitrou [Sat, 4 Aug 2012 14:17:10 +0000 (16:17 +0200)]
Merge

12 years agoIssue #12655: Instead of requiring a custom type, os.sched_getaffinity and
Antoine Pitrou [Sat, 4 Aug 2012 14:16:35 +0000 (16:16 +0200)]
Issue #12655: Instead of requiring a custom type, os.sched_getaffinity and
os.sched_setaffinity now use regular sets of integers to represent the
CPUs a process is restricted to.

12 years ago#15546: Fix BZ2File.read1()'s handling of pathological input data.
Nadeem Vawda [Sat, 4 Aug 2012 13:29:28 +0000 (15:29 +0200)]
#15546: Fix BZ2File.read1()'s handling of pathological input data.

12 years agoasynchat speedup improvement: avoid to use a function mimicking old buffer() builtin...
Giampaolo Rodola' [Sat, 4 Aug 2012 12:38:16 +0000 (14:38 +0200)]
asynchat speedup improvement: avoid to use a function mimicking old buffer() builtin behavior; instead use plain slicing

12 years agoNull merge (fix already applied to the default branch)
Victor Stinner [Fri, 3 Aug 2012 23:38:16 +0000 (01:38 +0200)]
Null merge (fix already applied to the default branch)

12 years agoClose #13119: use "\r\n" newline for sys.stdout/err on Windows
Victor Stinner [Fri, 3 Aug 2012 23:37:32 +0000 (01:37 +0200)]
Close #13119: use "\r\n" newline for sys.stdout/err on Windows

sys.stdout and sys.stderr are now using "\r\n" newline on Windows, as Python 2.

12 years agoClose #13119: use "\r\n" newline for sys.stdout/err on Windows
Victor Stinner [Fri, 3 Aug 2012 23:28:00 +0000 (01:28 +0200)]
Close #13119: use "\r\n" newline for sys.stdout/err on Windows

sys.stdout and sys.stderr are now using "\r\n" newline on Windows, as Python 2.

12 years ago(Merge 3.2) open() / TextIOWrapper doc: make it explicit than newline='\n'
Victor Stinner [Fri, 3 Aug 2012 23:22:07 +0000 (01:22 +0200)]
(Merge 3.2) open() / TextIOWrapper doc: make it explicit than newline='\n'
doesn't translate newlines on output.

12 years agoopen() / TextIOWrapper doc: make it explicit than newline='\n' doesn't
Victor Stinner [Fri, 3 Aug 2012 23:18:56 +0000 (01:18 +0200)]
open() / TextIOWrapper doc: make it explicit than newline='\n' doesn't
translate newlines on output.

12 years agoMake TextIOWrapper's documentation clearer by copying the newline argument's descript...
Antoine Pitrou [Fri, 3 Aug 2012 22:56:19 +0000 (00:56 +0200)]
Make TextIOWrapper's documentation clearer by copying the newline argument's description from open().

12 years agoMake TextIOWrapper's documentation clearer by copying the newline argument's descript...
Antoine Pitrou [Fri, 3 Aug 2012 22:55:38 +0000 (00:55 +0200)]
Make TextIOWrapper's documentation clearer by copying the newline argument's description from open().

12 years agoMERGE: #15512: Remove remnants of debugging code
Jesus Cea [Fri, 3 Aug 2012 13:49:40 +0000 (15:49 +0200)]
MERGE: #15512: Remove remnants of debugging code

12 years ago#15512: Remove remnants of debugging code
Jesus Cea [Fri, 3 Aug 2012 13:49:14 +0000 (15:49 +0200)]
#15512: Remove remnants of debugging code

12 years agoMERGE: Closes #15469: Correct __sizeof__ support for deque
Jesus Cea [Fri, 3 Aug 2012 12:52:12 +0000 (14:52 +0200)]
MERGE: Closes #15469: Correct __sizeof__ support for deque

12 years agoCloses #15469: Correct __sizeof__ support for deque
Jesus Cea [Fri, 3 Aug 2012 12:49:42 +0000 (14:49 +0200)]
Closes #15469: Correct __sizeof__ support for deque

12 years agoMERGE: Closes #15512: Correct __sizeof__ support for parser
Jesus Cea [Fri, 3 Aug 2012 12:29:26 +0000 (14:29 +0200)]
MERGE: Closes #15512: Correct __sizeof__ support for parser

12 years agoCloses #15512: Correct __sizeof__ support for parser
Jesus Cea [Fri, 3 Aug 2012 12:28:37 +0000 (14:28 +0200)]
Closes #15512: Correct __sizeof__ support for parser

12 years agoCloses #15514: Correct __sizeof__ support for cpu_set
Jesus Cea [Fri, 3 Aug 2012 12:18:11 +0000 (14:18 +0200)]
Closes #15514: Correct __sizeof__ support for cpu_set

12 years agoUpdate the What's New details for importlib based on doc/ABC changes.
Brett Cannon [Thu, 2 Aug 2012 21:50:06 +0000 (17:50 -0400)]
Update the What's New details for importlib based on doc/ABC changes.

12 years agoDitch the 'self' argument in importlib docs since it's implied.
Brett Cannon [Thu, 2 Aug 2012 21:35:34 +0000 (17:35 -0400)]
Ditch the 'self' argument in importlib docs since it's implied.

12 years agoClose #15534: Fix a typo in the fast search function of the string library (_s => s)
Victor Stinner [Thu, 2 Aug 2012 21:05:01 +0000 (23:05 +0200)]
Close #15534: Fix a typo in the fast search function of the string library (_s => s)

Replace _s with ptr to avoid future confusion. Add also non regression tests.

12 years agoIssue #15538: Fix compilation of the getnameinfo() / getaddrinfo() emulation code.
Antoine Pitrou [Thu, 2 Aug 2012 18:39:10 +0000 (20:39 +0200)]
Issue #15538: Fix compilation of the getnameinfo() / getaddrinfo() emulation code.
Patch by Philipp Hagemeister.

12 years agoIssue #15538: Fix compilation of the getnameinfo() / getaddrinfo() emulation code.
Antoine Pitrou [Thu, 2 Aug 2012 18:37:12 +0000 (20:37 +0200)]
Issue #15538: Fix compilation of the getnameinfo() / getaddrinfo() emulation code.
Patch by Philipp Hagemeister.

12 years agoIssue #15502: Bring the importlib.PathFinder docs and docstring more in line with...
Nick Coghlan [Thu, 2 Aug 2012 13:03:58 +0000 (23:03 +1000)]
Issue #15502: Bring the importlib.PathFinder docs and docstring more in line with the new import system documentation, and fix various parts of the new docs that weren't quite right given PEP 420 or were otherwise a bit misleading. Also note the key terminology problem still being discussed in the issue

12 years agoClarify the import statement semantics, especially for implicit imports in the 'from...
Nick Coghlan [Thu, 2 Aug 2012 12:02:35 +0000 (22:02 +1000)]
Clarify the import statement semantics, especially for implicit imports in the 'from X import Y' variant

12 years agoClose #15519: Properly expose WindowsRegistryFinder in importlib and bring the name...
Nick Coghlan [Thu, 2 Aug 2012 11:45:24 +0000 (21:45 +1000)]
Close #15519: Properly expose WindowsRegistryFinder in importlib and bring the name into line with normal import terminology. Original patch by Eric Snow

12 years agoIssue #15502: Bring the importlib ABCs into line with the current state of the import...
Nick Coghlan [Thu, 2 Aug 2012 11:26:03 +0000 (21:26 +1000)]
Issue #15502: Bring the importlib ABCs into line with the current state of the import protocols given PEP 420. Original patch by Eric Snow.

12 years agoIssue #15321: update PyPI upload doc to say --no-raw passed to rst2html.py
Eli Bendersky [Wed, 1 Aug 2012 23:56:39 +0000 (02:56 +0300)]
Issue #15321: update PyPI upload doc to say --no-raw passed to rst2html.py

12 years agoCleanup findnocoding.py and pysource.py scripts (with infile/infile.close)
Victor Stinner [Wed, 1 Aug 2012 22:05:41 +0000 (00:05 +0200)]
Cleanup findnocoding.py and pysource.py scripts (with infile/infile.close)

12 years agoFix findnocoding.p and pysource.py scripts
Victor Stinner [Wed, 1 Aug 2012 18:12:51 +0000 (20:12 +0200)]
Fix findnocoding.p and pysource.py scripts

I suppose that these scripts didn't work since Python 3.0.

12 years agoIssue #15441: Skip test_nonascii_abspath() of test_genericpath on Windows
Victor Stinner [Wed, 1 Aug 2012 18:03:49 +0000 (20:03 +0200)]
Issue #15441: Skip test_nonascii_abspath() of test_genericpath on Windows
if the bytes filenames cannot be encoded from the file system (ANSI) code page

12 years agoIssue #15463: Write a test for faulthandler truncating the name of functions
Victor Stinner [Wed, 1 Aug 2012 17:45:34 +0000 (19:45 +0200)]
Issue #15463: Write a test for faulthandler truncating the name of functions
to 500 characters.

12 years agoFix the user signal handler of faulthandler
Victor Stinner [Wed, 1 Aug 2012 17:36:36 +0000 (19:36 +0200)]
Fix the user signal handler of faulthandler

Don't exit the tstate is NULL to restore the errno and chain the signal handler
if needed.

12 years agoIssue #15525: Increase timeout when TerminateProcess() fails
Richard Oudkerk [Wed, 1 Aug 2012 16:44:18 +0000 (17:44 +0100)]
Issue #15525: Increase timeout when TerminateProcess() fails

12 years agoImprove wording for __hash__
Antoine Pitrou [Wed, 1 Aug 2012 12:53:22 +0000 (14:53 +0200)]
Improve wording for __hash__

12 years agoClarify that hash randomization is on by default
Antoine Pitrou [Wed, 1 Aug 2012 12:53:16 +0000 (14:53 +0200)]
Clarify that hash randomization is on by default

12 years agoIssue #8847: Merge with 3.2
Martin v. Löwis [Wed, 1 Aug 2012 09:09:55 +0000 (11:09 +0200)]
Issue #8847: Merge with 3.2

12 years agoIssue #8847: Disable COMDAT folding in Windows PGO builds.
Martin v. Löwis [Wed, 1 Aug 2012 09:06:53 +0000 (11:06 +0200)]
Issue #8847: Disable COMDAT folding in Windows PGO builds.
Patch by Stefan Krah.

12 years agoIssue #8847: Disable COMDAT folding in Windows PGO builds.
Martin v. Löwis [Wed, 1 Aug 2012 08:32:11 +0000 (10:32 +0200)]
Issue #8847: Disable COMDAT folding in Windows PGO builds.
Analysis by Victor Stinner. Patch by Stefan Krah.

12 years agomerge heads
Benjamin Peterson [Wed, 1 Aug 2012 04:50:11 +0000 (21:50 -0700)]
merge heads

12 years agoconstruct fields in the right order (closes #15517)
Benjamin Peterson [Wed, 1 Aug 2012 04:41:56 +0000 (21:41 -0700)]
construct fields in the right order (closes #15517)

Patch from Taihyun Hwang.

12 years agoCloses #15499: Sleep is hardcoded in webbrowser.UnixBrowser
Jesus Cea [Wed, 1 Aug 2012 01:57:52 +0000 (03:57 +0200)]
Closes #15499: Sleep is hardcoded in webbrowser.UnixBrowser

12 years agoabc fixes.
Barry Warsaw [Tue, 31 Jul 2012 21:52:32 +0000 (17:52 -0400)]
abc fixes.

12 years agoTypo.
Barry Warsaw [Tue, 31 Jul 2012 20:39:43 +0000 (16:39 -0400)]
Typo.

12 years ago- Issue #15295: Reorganize and rewrite the documentation on the import system.
Barry Warsaw [Tue, 31 Jul 2012 20:10:12 +0000 (16:10 -0400)]
- Issue #15295: Reorganize and rewrite the documentation on the import system.

12 years agomerge
Barry Warsaw [Tue, 31 Jul 2012 20:03:25 +0000 (16:03 -0400)]
merge

12 years agoFinally, a coherent set of terminology for all the lil' beasties involved.
Barry Warsaw [Tue, 31 Jul 2012 20:03:09 +0000 (16:03 -0400)]
Finally, a coherent set of terminology for all the lil' beasties involved.

12 years agoIssue #9803: Don't close IDLE on saving if breakpoint is open.
Andrew Svetlov [Tue, 31 Jul 2012 16:49:38 +0000 (19:49 +0300)]
Issue #9803: Don't close IDLE on saving if breakpoint is open.

Patch by Roger Serwy.

12 years agoIssue #9803: Don't close IDLE on saving if breakpoint is open.
Andrew Svetlov [Tue, 31 Jul 2012 16:48:00 +0000 (19:48 +0300)]
Issue #9803: Don't close IDLE on saving if breakpoint is open.

Patch by Roger Serwy.

12 years agoIssue #14814: fix some typos in howto/ipaddress.rst
Eli Bendersky [Tue, 31 Jul 2012 14:25:33 +0000 (17:25 +0300)]
Issue #14814: fix some typos in howto/ipaddress.rst

12 years agoIssue #14814: reorganize ipaddress documentation and document all attributes of IPv...
Eli Bendersky [Tue, 31 Jul 2012 14:23:11 +0000 (17:23 +0300)]
Issue #14814: reorganize ipaddress documentation and document all attributes of IPv[46]Address objects

12 years agoIssue #15425: Don't rely on the assumption that the current working directory is...
Nick Coghlan [Tue, 31 Jul 2012 11:39:42 +0000 (21:39 +1000)]
Issue #15425: Don't rely on the assumption that the current working directory is on sys.path (this will hopefully appease the XP buildbots)

12 years agoClose #15486: Simplify the mechanism used to remove importlib frames from tracebacks...
Nick Coghlan [Tue, 31 Jul 2012 11:14:18 +0000 (21:14 +1000)]
Close #15486: Simplify the mechanism used to remove importlib frames from tracebacks when they just introduce irrelevant noise

12 years agoIssue #15231: rephrase the last paragraph slightly
Eli Bendersky [Tue, 31 Jul 2012 03:14:59 +0000 (06:14 +0300)]
Issue #15231: rephrase the last paragraph slightly

12 years agoUpdate the string limit in the faulthandler documentations
Victor Stinner [Tue, 31 Jul 2012 01:25:28 +0000 (03:25 +0200)]
Update the string limit in the faulthandler documentations

12 years agoFix initialization of the faulthandler module
Victor Stinner [Tue, 31 Jul 2012 00:55:49 +0000 (02:55 +0200)]
Fix initialization of the faulthandler module

faulthandler requires the importlib if "-X faulthandler" option is present on
the command line, so initialize faulthandler after importlib.

Add also an unit test.

12 years agoMinor markup tweak.
Brett Cannon [Mon, 30 Jul 2012 23:31:00 +0000 (19:31 -0400)]
Minor markup tweak.

12 years agoAdd a versionchanged mention to __import__ in regards to negative level values.
Brett Cannon [Mon, 30 Jul 2012 22:35:17 +0000 (18:35 -0400)]
Add a versionchanged mention to __import__ in regards to negative level values.

12 years agoIssue #15508: Fix the docstring for __import__ to not mention negative
Brett Cannon [Mon, 30 Jul 2012 21:45:54 +0000 (17:45 -0400)]
Issue #15508: Fix the docstring for __import__ to not mention negative
'level' values and set its document default value to 0.

Thanks to Arfrever Frehtes Taifersar Arahesis for filing the bug.

12 years agoAnother XXX.
Barry Warsaw [Mon, 30 Jul 2012 20:57:20 +0000 (16:57 -0400)]
Another XXX.

12 years agoAddress substantially all of Eric Snow's comments in issue #15295, except for
Barry Warsaw [Mon, 30 Jul 2012 20:24:12 +0000 (16:24 -0400)]
Address substantially all of Eric Snow's comments in issue #15295, except for
those which now have additional XXX's here.  I'll get to those later. :)

12 years agomerge
Barry Warsaw [Mon, 30 Jul 2012 18:34:43 +0000 (14:34 -0400)]
merge

12 years agoIssue #12288: Consider '0' and '0.0' as valid initialvalue for tkinter SimpleDialog.
Andrew Svetlov [Mon, 30 Jul 2012 17:01:13 +0000 (20:01 +0300)]
Issue #12288: Consider '0' and '0.0' as valid initialvalue for tkinter SimpleDialog.

12 years agoIssue #12288: Consider '0' and '0.0' as valid initialvalue for tkinter SimpleDialog.
Andrew Svetlov [Mon, 30 Jul 2012 16:59:53 +0000 (19:59 +0300)]
Issue #12288: Consider '0' and '0.0' as valid initialvalue for tkinter SimpleDialog.

12 years agoBetter test for BytesIO.__sizeof__, now that the struct module supports (s)size_t.
Antoine Pitrou [Mon, 30 Jul 2012 11:58:42 +0000 (13:58 +0200)]
Better test for BytesIO.__sizeof__, now that the struct module supports (s)size_t.
Followup to issue #15489.

12 years agomerge
Ned Deily [Mon, 30 Jul 2012 11:20:51 +0000 (04:20 -0700)]
merge

12 years agonull merge
Ned Deily [Mon, 30 Jul 2012 11:14:18 +0000 (04:14 -0700)]
null merge

12 years agoIssue #14018: Fix OS X Tcl/Tk framework checking when using OS X SDKs.
Ned Deily [Mon, 30 Jul 2012 11:09:32 +0000 (04:09 -0700)]
Issue #14018: Fix OS X Tcl/Tk framework checking when using OS X SDKs.