Tcl Source Code

View Ticket
Login
2022-12-30
20:41 Ticket [084ab982fe] Use -strict to disable noncharacters status still Closed with 6 other changes artifact: 14e0e130d3 user: pooryorick
2022-12-20
09:46 Closed ticket [17a1cb8d6e]: Tcl 9: "illegal byte sequence" ?! plus 5 other changes artifact: 4ece7efe93 user: jan.nijtmans
09:32
Fix [17a1cb8d6e2a51bd]. From now on, noncharacters are no longer rejected in -strict mode check-in: aa03339d48 user: jan.nijtmans tags: core-8-branch
2022-12-19
22:21 Pending ticket [17a1cb8d6e]: Tcl 9: "illegal byte sequence" ?! plus 5 other changes artifact: 6bfb791677 user: jan.nijtmans
2022-12-16
09:42 Ticket [17a1cb8d6e]: 4 changes artifact: 76c638ce2a user: jan.nijtmans
2022-12-13
11:47 Ticket [17a1cb8d6e]: 4 changes artifact: d0a74b4e24 user: jan.nijtmans
07:59 Closed ticket [17a1cb8d6e]. artifact: af5373e31b user: jan.nijtmans
2022-12-12
23:44 New ticket [17a1cb8d6e]. artifact: e0807a6185 user: pointsman

Ticket UUID: 17a1cb8d6e2a51bde1d5d4a6e55f7d42e408cbbc
Title: Tcl 9: "illegal byte sequence" ?!
Type: Bug Version: 9.0a4, trunk
Submitter: pointsman Created on: 2022-12-12 23:44:57
Subsystem: 25. Channel System Assigned To: jan.nijtmans
Priority: 5 Medium Severity: Minor
Status: Closed Last Modified: 2022-12-20 09:46:27
Resolution: Fixed Closed By: jan.nijtmans
    Closed on: 2022-12-20 09:46:27
Description:
With 252e282cd21b (2022-12-12 06:11:22 UTC)

# Create the test data
package require Tcl 9
set fd [open data.txt w+]
fconfigure $fd -encoding utf-8
puts $fd "A\U10FFFFBCDE"
close $fd


# The data is a valid UTF-8 encoded Unicode string
# in the understanding of Tcl.

# Try to read it
package require Tcl 9
set fd [open "data.txt"]
fconfigure $fd -encoding utf-8 -strictencoding 1 -nocomplainencoding 0
set data ""
while {![eof $fd]} {
    append data [read $fd]
}
# Not reached with this test data
puts [string length $data]
close $fd

I get:

error reading "file6": illegal byte sequence
    while executing
"read $fd"
    ("while" body line 2)
etc.


Expected behaviour:

Read the data without raising error.
User Comments: jan.nijtmans added on 2022-12-20 09:46:27:

Branch now merged to core-8-branch and trunk. Closing


jan.nijtmans added on 2022-12-19 22:21:28:

As there seems no interest to check for noncharacters, remove those checks. See [cbaa5e70167db75b]


jan.nijtmans added on 2022-12-13 11:47:09:

B.T.W. I know that "illegal byte sequence" is not the best error-message we can think of. But that's a limination of the channel code, that we are restricted to POSIX errors. This one is the closest to the truth.


jan.nijtmans added on 2022-12-13 07:59:45:

Does [05414ca78462df68|this] clarify the situation?

Referring to ticket [084ab982fe], you asked there:

> Why do we have the fconfigure -strict mode at all?

Apparently, -strict is not the right option for you.