This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff -r -u tcl8.6.9rc4/changes tcl8.6.9-final/changes | |
--- tcl8.6.9rc4/changes 2018-11-09 13:13:55.000000000 -0600 | |
+++ tcl8.6.9-final/changes 2018-11-16 12:40:53.000000000 -0600 | |
@@ -8891,4 +8891,6 @@ | |
2018-11-09 (bug)[35a8f1] overlong string length of some lists (owens) | |
+2018-11-16 (bug)[00d04c] Repair [binary encode base64] (sebres) | |
+ | |
- Released 8.6.9, November 16, 2018 - details at http://core.tcl-lang.org/tcl/ - |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 1 "../../3rdparty/chromium/base/strings/string16.cc" | |
# 1 "<built-in>" 1 | |
# 1 "<built-in>" 3 | |
# 405 "<built-in>" 3 | |
# 1 "<command line>" 1 | |
# 1 "<built-in>" 2 | |
# 1 "../../3rdparty/chromium/base/strings/string16.cc" 2 | |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 1 "../../3rdparty/chromium/base/strings/utf_string_conversions.cc" | |
# 1 "<built-in>" 1 | |
# 1 "<built-in>" 3 | |
# 405 "<built-in>" 3 | |
# 1 "<command line>" 1 | |
# 1 "<built-in>" 2 | |
# 1 "../../3rdparty/chromium/base/strings/utf_string_conversions.cc" 2 | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(Not sure if this is actually due to 8.7) | |
====================================================================== | |
FAIL: test_create_polygon (test.test_tkinter.test_widgets.CanvasTest.test_create_polygon) | |
---------------------------------------------------------------------- | |
Traceback (most recent call last): | |
File "/Users/user/git/cpython/Lib/test/test_tkinter/test_widgets.py", line 861, in test_create_polygon | |
self.assertEqual(c.bbox(i1), (19, 9, 61, 51)) | |
AssertionError: Tuples differ: (18, 8, 62, 52) != (19, 9, 61, 51) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// FindSymbol() approach stolen from https://stackoverflow.com/a/21855885/4896937 | |
// Adapted from: | |
// https://github.com/0xced/iOS-Artwork-Extractor/blob/master/Classes/FindSymbol.c | |
// Adapted from MoreAddrToSym / GetFunctionName() | |
// http://www.opensource.apple.com/source/openmpi/openmpi-8/openmpi/opal/mca/backtrace/darwin/MoreBacktrace/MoreDebugging/MoreAddrToSym.c | |
#include <mach-o/dyld.h> | |
#include <mach-o/nlist.h> | |
static void *FindSymbol(const struct mach_header *img, const char *symbol) | |
{ | |
if ((img == NULL) || (symbol == NULL)) |
OlderNewer