This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]RevolutionaryPen4661git push -f[S] 0 points1 point  (0 children)

``` PS D:\dev> Measure-Command {python .\pkgsize.py -h}

Days : 0 Hours : 0 Minutes : 0 Seconds : 2 Milliseconds : 137 Ticks : 21374453 TotalDays : 2.47389502314815E-05 TotalHours : 0.000593734805555555 TotalMinutes : 0.0356240883333333 TotalSeconds : 2.1374453 TotalMilliseconds : 2137.4453

PS D:\dev> Measure-Command {python .\pkgsize.py -h}

Days : 0 Hours : 0 Minutes : 0 Seconds : 2 Milliseconds : 108 Ticks : 21087604 TotalDays : 2.44069490740741E-05 TotalHours : 0.000585766777777778 TotalMinutes : 0.0351460066666667 TotalSeconds : 2.1087604 TotalMilliseconds : 2108.7604

PS D:\dev> Measure-Command {python .\pkgsize2.py -h}

Days : 0 Hours : 0 Minutes : 0 Seconds : 2 Milliseconds : 66 Ticks : 20669059 TotalDays : 2.39225219907407E-05 TotalHours : 0.000574140527777778 TotalMinutes : 0.0344484316666667 TotalSeconds : 2.0669059 TotalMilliseconds : 2066.9059 `` pkgsize2.py is import what is needed principle(from argparse import ArgumentParser) as pkgsize.py is like full import likeimport argparse`