Re: dmt: Python-like indentation in D programming language

2021-11-20 Thread uranuz via Digitalmars-d-announce
On Wednesday, 17 November 2021 at 11:00:46 UTC, JN wrote: On Tuesday, 16 November 2021 at 21:58:24 UTC, Witold Baryluk wrote: Hi, `dmt` is an old project of mine from around year 2006. I ported it recently from D1 to D2, and added some extra features and support for extra keywords, and fixed

Re: Release D 2.090.0

2020-02-29 Thread uranuz via Digitalmars-d-announce
I have just added workaround of this bug in by code. And now it is working and returns backtrace string[] getBacktrace(Throwable ex) { import std.conv: to; import core.exception: OutOfMemoryError; string[] backTrace; try { foreach( inf; ex.info )

Re: Release D 2.090.0

2020-02-29 Thread uranuz via Digitalmars-d-announce
I believe that problemme is somehow connected with core.runtime.DefaultTraceInfo. I figured out that it fail inside a function that tries to get trace info for exception. Body is pretty simple. I created the case where `ex` is just an instance of standart Exception class in order to eliminate

Re: Release D 2.090.0

2020-02-25 Thread uranuz via Digitalmars-d-announce
Seems that I managed to slightly reduce the problemme. I suspect that error is somehow connected with running my code inside TaskPool: https://dlang.org/library/std/parallelism/task_pool.html `Memory allocation failed` error occurs when I throw any exception even trivial one: throw new

Re: Release D 2.090.0

2020-01-14 Thread uranuz via Digitalmars-d-announce
I have installed 2.089 back to check. And in the previous version there is no such error. I have tried to debug. And looks like this error occurred during throwing exception inside std.exception: enforce.

Re: Release D 2.090.0

2020-01-14 Thread uranuz via Digitalmars-d-announce
On Tuesday, 7 January 2020 at 10:30:09 UTC, Martin Nowak wrote: Glad to announce D 2.090.0, ♥ to the 48 contributors. This release comes with the ability to convert lazy parameters to delegates, new intrinsics to force rounding to specific floating point precision, unittest builds that no

Re: Release D 2.090.0

2020-01-14 Thread uranuz via Digitalmars-d-announce
On Tuesday, 7 January 2020 at 10:30:09 UTC, Martin Nowak wrote: Glad to announce D 2.090.0, ♥ to the 48 contributors. This release comes with the ability to convert lazy parameters to delegates, new intrinsics to force rounding to specific floating point precision, unittest builds that no

Re: release of code-d 0.21.0 + serve-d 0.5.1

2019-11-18 Thread uranuz via Digitalmars-d-announce
Hello! When code-d attempts self upgrade it prints the followinf output to console of VS Code: """ Installing DCD: DCD is outdated. Expected: 0.11.1, got none Downloading from https://github.com/dlang-community/DCD/releases/download/v0.11.1/dcd-v0.11.1-linux-x86_64.tar.gz to

Re: Beta 2.088.1

2019-10-06 Thread uranuz via Digitalmars-d-announce
On Friday, 4 October 2019 at 05:58:03 UTC, Martin Nowak wrote: Glad to announce the first beta for the 2.088.1 point release, ♥ to the 6 contributors. http://dlang.org/download.html#dmd_beta http://dlang.org/changelog/2.088.1.html As usual please report any bugs at https://issues.dlang.org

Re: Release D 2.087.0

2019-07-07 Thread uranuz via Digitalmars-d-announce
On Sunday, 7 July 2019 at 10:09:50 UTC, Johannes Pfau wrote: Am Sun, 07 Jul 2019 08:06:57 + schrieb uranuz: After updating compiler to 2.087 I got a lot of deprecation warnings linked to std.json module. I have found all of the usages of deprecated symbols in my project and changed them

Re: Release D 2.087.0

2019-07-07 Thread uranuz via Digitalmars-d-announce
After updating compiler to 2.087 I got a lot of deprecation warnings linked to std.json module. I have found all of the usages of deprecated symbols in my project and changed them to the new ones. All these warnings are about changing JSON_TYPE to JSONType JSON_TYPE.STRING to JSONType.string

Re: Voting for std.experimental.allocator

2015-07-16 Thread Uranuz via Digitalmars-d-announce
On Thursday, 16 July 2015 at 10:02:17 UTC, Dicebot wrote: On Wednesday, 8 July 2015 at 11:33:03 UTC, Dicebot wrote: Voting ends in 2 weeks, on July 22. ~1 week remains Yes. It's time to have this functionality in standart library.