Tcl Source Code

Check-in [6deecf6f75]
Login

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

Overview
Comment:[1230597] Update test comment.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 6deecf6f7559a5d978b380ff25ccdf02f0a246bd
User & Date: dgp 2014-02-19 14:12:37
Context
2014-02-23
13:07
[3597178]: Improve documentation of what's going on with encodings check-in: 29b5d483ec user: dkf tags: trunk
2014-02-21
20:08
merge trunk check-in: 7067cdd418 user: jan.nijtmans tags: novem
2014-02-19
14:12
[1230597] Update test comment. check-in: 6deecf6f75 user: dgp tags: trunk
14:10
[1230597] Update test comment. check-in: 0392a86d4d user: dgp tags: core-8-5-branch
2014-02-16
08:18
[9bf7e67b37]: minor documentation blooper check-in: 319683e85d user: dkf tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to tests/namespace.test.

299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
    }
    namespace eval test_ns_import {
        namespace import ::test_ns_export::*
        proc p {} {return [cmd1 123]}
    }
    test_ns_import::p
} {cmd1: 123}
test namespace-9.5 {Tcl_Import, can't redefine cmd unless allowOverwrite!=0} {
    list [catch {namespace eval test_ns_import {namespace import ::test_ns_export::*}} msg] $msg
} {0 {}}
test namespace-9.6 {Tcl_Import, cmd redefinition ok if allowOverwrite!=0} {
    namespace eval test_ns_import {
        namespace import -force ::test_ns_export::*
        cmd1 555
    }







|







299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
    }
    namespace eval test_ns_import {
        namespace import ::test_ns_export::*
        proc p {} {return [cmd1 123]}
    }
    test_ns_import::p
} {cmd1: 123}
test namespace-9.5 {Tcl_Import, RFE 1230597} {
    list [catch {namespace eval test_ns_import {namespace import ::test_ns_export::*}} msg] $msg
} {0 {}}
test namespace-9.6 {Tcl_Import, cmd redefinition ok if allowOverwrite!=0} {
    namespace eval test_ns_import {
        namespace import -force ::test_ns_export::*
        cmd1 555
    }