Tcl Source Code

Check-in [a2c1963b2c]
Login

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

Overview
Comment:Added file used with test for BUG 1327
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | core-8-1-branch-old
Files: files | file ages | folders
SHA1: a2c1963b2c9a63dc7d4a98a4ad840fe94dc75d5b
User & Date: welch 1999-04-01 23:23:04.000
Context
1999-04-01
23:23
Deleted unused code. check-in: e6c75f634f user: welch tags: core-8-1-branch-old
23:23
Added file used with test for BUG 1327 check-in: a2c1963b2c user: welch tags: core-8-1-branch-old
23:22
Added test for BUG 1327. Improved the way yeilding is done in thread tests. check-in: 50bfe2a9a5 user: welch tags: core-8-1-branch-old
Changes
Unified Diff Ignore Whitespace Patch
Added tests/pkg/import.tcl.
































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package provide fubar 1.0
    
namespace eval ::fubar:: {
    #
    # export only public functions.
    #
    namespace export {[a-z]*}
}

proc ::fubar::foo {bar} {
    puts "$bar"
    return true
}

namespace import ::fubar::foo