Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

List.print and print(List) differ #4785

Closed
p6rt opened this issue Nov 24, 2015 · 6 comments
Closed

List.print and print(List) differ #4785

p6rt opened this issue Nov 24, 2015 · 6 comments

Comments

@p6rt
Copy link

p6rt commented Nov 24, 2015

Migrated from rt.perl.org#126725 (status was 'resolved')

Searchable as RT126725$

@p6rt
Copy link
Author

p6rt commented Nov 24, 2015

From @gfldex

my $list = (1,2,3);
print $list;
put;
$list.print;

# OUTPUT«1 2 3␤123»
# The output of both forms should be the same. List should .Str to
.join(' '). Array is List, so $list.print should have the appropriate
amount of WS.

@p6rt
Copy link
Author

p6rt commented Nov 29, 2015

From @lizmat

Fixed with 07181796e4e3a2547af1745d , looking at test-fallout now

On 24 Nov 2015, at 15​:20, Wenzel Peppmeyer (via RT) <perl6-bugs-followup@​perl.org> wrote​:

# New Ticket Created by Wenzel Peppmeyer
# Please include the string​: [perl #​126725]
# in the subject line of all future correspondence about this issue.
# <URL​: https://rt-archive.perl.org/perl6/Ticket/Display.html?id=126725 >

my $list = (1,2,3);
print $list;
put;
$list.print;

# OUTPUT«1 2 3␤123»
# The output of both forms should be the same. List should .Str to
.join(' '). Array is List, so $list.print should have the appropriate
amount of WS.

@p6rt
Copy link
Author

p6rt commented Nov 29, 2015

The RT System itself - Status changed from 'new' to 'open'

@p6rt
Copy link
Author

p6rt commented Nov 29, 2015

From @lizmat

Tests fixed, don’t think further tests are needed

On 29 Nov 2015, at 12​:35, Elizabeth Mattijsen <liz@​dijkmat.nl> wrote​:

Fixed with 07181796e4e3a2547af1745d , looking at test-fallout now

On 24 Nov 2015, at 15​:20, Wenzel Peppmeyer (via RT) <perl6-bugs-followup@​perl.org> wrote​:

# New Ticket Created by Wenzel Peppmeyer
# Please include the string​: [perl #​126725]
# in the subject line of all future correspondence about this issue.
# <URL​: https://rt-archive.perl.org/perl6/Ticket/Display.html?id=126725 >

my $list = (1,2,3);
print $list;
put;
$list.print;

# OUTPUT«1 2 3␤123»
# The output of both forms should be the same. List should .Str to
.join(' '). Array is List, so $list.print should have the appropriate
amount of WS.

@p6rt
Copy link
Author

p6rt commented Nov 29, 2015

From @usev6

On Sun Nov 29 03​:54​:18 2015, elizabeth wrote​:

Tests fixed, don’t think further tests are needed

Great, I'm closing this ticket as 'resolved'.

@p6rt
Copy link
Author

p6rt commented Nov 29, 2015

@usev6 - Status changed from 'open' to 'resolved'

@p6rt p6rt closed this as completed Nov 29, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant