On Tue, 15 Dec 2015 06:14:03 -0800, b...@abrij.org wrote:
>
>
> When the %d directive is given a decimal precision it should pad with
> zeroes, not spaces.
>
> $ perl6 -e 'printf("%3.3d", 16)'
> 16
> $ perl -e 'printf("%3.3d\n", 16)'
> 016
This was fixed with
https://github.com/rakudo/rakudo/
On 07/10/2017 12:31 PM, Timo Paulssen wrote:
Did you read my very long post on the Net::SMTP issue you opened?
I will shortly when I get some programming time. It arrived in
my eMail and I have it bolded and tagged red. Thank you!
--
Yesterday it worked.
Today it i
Did you read my very long post on the Net::SMTP issue you opened?
On Mon, Jul 10, 2017 at 3:17 PM, ToddAndMargo wrote:
> On 07/10/2017 06:48 AM, Timo Paulssen wrote:
>
>> It seems like you don't know the internals of the SMTP protocol. In that
>> case, it's a bad idea to try to use the raw mode, when the simple mode
>> is much simpler to handle.
>>
> I need to
On 07/10/2017 06:48 AM, Timo Paulssen wrote:
It seems like you don't know the internals of the SMTP protocol. In that
case, it's a bad idea to try to use the raw mode, when the simple mode
is much simpler to handle.
In the list of simple mode methods you can find the method "auth" that
will try
On 10/07/17 06:48, ToddAndMargo wrote:
> Hi Timo,
>
> I don't understand. How do you sent this to Net::SMTP?
> Where is the SMTP server's address and user name? In
> Net::SMTP by chance?
>
> I have successfully used Net::SMTP before, but I don't get what you
> are saying.
>
> I am confused. :'(
It seems like you don't know the internals of the SMTP protocol. In that
case, it's a bad idea to try to use the raw mode, when the simple mode
is much simpler to handle.
In the list of simple mode methods you can find the method "auth" that
will try the authentication methods the server accepts i
Branch: refs/heads/master
Home: https://github.com/perl6/specs
Commit: 6f12b30660e8e47afcd76152d18f142a764b3ac2
https://github.com/perl6/specs/commit/6f12b30660e8e47afcd76152d18f142a764b3ac2
Author: Zoffix Znet
Date: 2017-07-09 (Sun, 09 Jul 2017)
Changed paths:
M v6d.po
Branch: refs/heads/master
Home: https://github.com/perl6/specs
Commit: c2d66a5cb73506230130ba4d99374bfafe8942b5
https://github.com/perl6/specs/commit/c2d66a5cb73506230130ba4d99374bfafe8942b5
Author: Zoffix Znet
Date: 2017-07-09 (Sun, 09 Jul 2017)
Changed paths:
M v6d.po
> cat A.pm
class A { ... }
role R {
has A $!private;
method r {
self!s;
}
method !s {
$!private!s if $!private; # line 12
say $.b;
}
method !private-method {
say "priv method";
}
method public-method {
self!p
# New Ticket Created by Shoichi Kaji
# Please include the string: [perl #131721]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=131721 >
I've noticed that with recent rakudo (2017.06-172-gc76d9324a),
it takes a lot of time to
11 matches
Mail list logo