Changes On Branch pyk-whatever
Not logged in

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Changes In Branch bug-0306a5563c Excluding Merge-Ins

This is equivalent to a diff from f867f44c9c to 67231d38a8

2023-04-23
18:25
That fixes the examples given in [0306a5563c]. Needs more consideration before claim success. Closed-Leaf check-in: 67231d38a8 user: pointsman tags: pyk-whatever, bug-0306a5563c
11:48
merge trunk [f867f44c9c]. check-in: be70a97e6d user: pooryorick tags: trunk-encodingdefaultstrict
11:39
Set the encoding profile to strict in Tcl_FSEvalFileEx(). This is independent of TIP 657: A scrip... Closed-Leaf check-in: f867f44c9c user: pooryorick tags: pyk-whatever
11:28
Add bytearray checking to TclCheckEmptyString(), and then use TclCheckEmptyString() in Tcl_AppendOb... check-in: a61fef8429 user: pooryorick tags: pyk-whatever

Changes to generic/tclIO.c.
4269
4270
4271
4272
4273
4274
4275

4276
4277
4278
4279
4280
4281
4282
	int written;
	written = WriteChars(chanPtr, src, chunkSize);
	if (written < 0) {
	    return TCL_INDEX_NONE;
	}
	totalWritten += written;
	srcLen -= chunkSize;

    } while (srcLen);
    return totalWritten;
}

static void
WillWrite(
    Channel *chanPtr)







>







4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
	int written;
	written = WriteChars(chanPtr, src, chunkSize);
	if (written < 0) {
	    return TCL_INDEX_NONE;
	}
	totalWritten += written;
	srcLen -= chunkSize;
        src += written;
    } while (srcLen);
    return totalWritten;
}

static void
WillWrite(
    Channel *chanPtr)