msg207622 - (view) |
Author: Larry Hastings (larry) * |
Date: 2014-01-07 23:49 |
This issue is part of the Great Argument Clinic Conversion Derby,
where we're trying to convert as much of Python 3.4 to use
Argument Clinic as we can before Release Candidate 1 on January 19.
This issue asks you to change the following bundle of files:
Modules/_datetimemodule.c: 20 sites
Modules/timemodule.c: 8 sites
Modules/_decimal/_decimal.c: 24 sites
Talk to me (larry) if you only want to attack part of a bundle.
For instructions on how to convert a function to work with Argument
Clinic, read the "howto":
http://docs.python.org/dev/howto/clinic.html
|
msg207652 - (view) |
Author: Stefan Krah (skrah) * |
Date: 2014-01-08 00:55 |
Please take out _decimal.c. It has a huge test suite that would break entirely.
|
msg207654 - (view) |
Author: Larry Hastings (larry) * |
Date: 2014-01-08 01:04 |
Absolutely. decimal is a very special case.
Whoever takes over this issue: please ignore the part about _decimal.c.
|
msg208383 - (view) |
Author: Nikolaus Rath (nikratio) * |
Date: 2014-01-18 04:47 |
I have started working on this (partial patch attached), but I am unsure how to handle cases where the docstring definition utilizes a macro. For example:
PyDoc_STRVAR(strftime_doc,
"strftime(format[, tuple]) -> string\n\
\n\
Convert a time tuple to a string according to a format specification.\n\
See the library reference manual for formatting codes. When the time tuple\n\
is not present, current time as returned by localtime() is used.\n\
\n" STRFTIME_FORMAT_CODES);
I don't think STRFTIME_FORMAT_CODES will be expanded if I put it into the [clinic] comment section.
Should I include the contents verbatim? Or do not convert these functions to argument clinic?
|
msg208391 - (view) |
Author: Larry Hastings (larry) * |
Date: 2014-01-18 09:12 |
That macro, STRFTIME_FORMAT_CODES, is only used in two functions. If it were me I'd just copy and paste the text into both functions.
|
msg208424 - (view) |
Author: Nikolaus Rath (nikratio) * |
Date: 2014-01-18 23:17 |
Will do. Another question: what should I do with return annotations, e.g. the "-> dict" part in
"get_clock_info(name: str) -> dict\n
Should I drop that part? In the clinic howto, I couldn't find anything about return annotations (only that parameter annotations are unsupported).
|
msg208425 - (view) |
Author: Nikolaus Rath (nikratio) * |
Date: 2014-01-18 23:29 |
One more question: what's a good way to find sites that need changes? Searching for "PyArg_" finds both converted and unconverted functions...
|
msg208426 - (view) |
Author: Larry Hastings (larry) * |
Date: 2014-01-18 23:54 |
Yes, you should drop things that look like return annotations in the original docstring.
I don't have a magic formula for finding unchanged functions, sorry.
|
msg208429 - (view) |
Author: Nikolaus Rath (nikratio) * |
Date: 2014-01-19 01:03 |
Here is a patch for timemodule.c. I have converted everything except:
* ctime() uses the gettmarg() function. Converting gettmarg() itself doesn't seem possible to me (because it's not Python callable), and duplicating the functionality in a single complicated clinic section just for ctime() did not seem reasonable either.
* gmtime(), localtime(), ctime() use a the parse_time_t_args() utility function. I have not yet figured out how to replace this with argument clinic (sent a mail to python-dev about that).
|
msg208439 - (view) |
Author: Nikolaus Rath (nikratio) * |
Date: 2014-01-19 03:58 |
Hmm. After reading some of the threads on python-dev, I'm now confused if I did the conversion of optional arguments correctly.
Should something like "strftime(format[, tuple])" be converted using optional groups, or should tuple become a parameter with a default value? (so far, I have done the latter).
|
msg208441 - (view) |
Author: Larry Hastings (larry) * |
Date: 2014-01-19 04:14 |
Optional groups really are only for cases when that's the behavior
of the original code. If the original function used a switch statement
examining the size of the tuple, then had different parsing functions based on that size, use optional groups.
But if the function can be expressed with normal positional parameters and default values, that's best.
|
msg208746 - (view) |
Author: Nikolaus Rath (nikratio) * |
Date: 2014-01-22 04:39 |
As discussed on devel, here's an updated patch for timemodule.c that
uses a custom C converter to handle the parse_time_t_args() utility
function. The only function I did not convert is mktime, because I did
not find a way to do so without duplicating the gettmarg() utility
function (which cannot be converted because it is also called by other
C functions).
You probably want to take a close look at what I did to the strptime
function. I didn't see a way to include the actual default value
(rather than None) in the signature without reconstructing the
argument tuple for calling the Python implementation.
As far as I can see, this completes the conversion for timemodule.c. I'll
work on _datetimemodule.c next, but I'm not sure I'll have time before
next weekend.
This is probably already planned, but since I haven't seen it in
Misc/NEWS yet: I think it would be a good idea to entry informing the
user about the conversion from strictly optional parameters to
parameters with default values. Eg.:
* Issues xxx, yyy, zzz: many functions in the standard library now
accept `None` for optional arguments. Previously, specifying `None`
mostly resulted in a `TypeError`. Starting with this version,
passing `None` is equivalent to not specfying the parameter.
|
msg209153 - (view) |
Author: Nikolaus Rath (nikratio) * |
Date: 2014-01-25 06:07 |
(I already sent this to python-dev, but maybe it makes more sense to have these thoughts together with the patch)
After looking at the conversion of parse_time_t_args again, I think I lost track of what we're actually gaining with this procedure. If all we need is a type that can distinguish between a valid time_t value and a default value, why don't we simply use PyObject?
In other words, what's the advantage of the extra custom strict, plus the custom C converter function, plus the custom converter python class over:
static int
PyObject_to_time_t(PyObject *obj, time_t *when)
{
if (obj == NULL || obj == Py_None)
*when = time(NULL);
else if (_PyTime_ObjectToTime_t(obj, when) == -1)
return 0;
return 1;
}
/*[clinic input]
time.gmtime
seconds: object=NULL
/
[...]
static PyObject *
time_gmtime_impl(PyModuleDef *module, PyObject *seconds)
{
PyObject *return_value = NULL;
time_t when;
if(!PyObj_to_time_t(seconds, &when))
return NULL;
[...]
To me this version looks shorter and clearer.
|
msg209268 - (view) |
Author: Nikolaus Rath (nikratio) * |
Date: 2014-01-26 01:55 |
I've attached updated patches to reflect the recent changes in the derby policy.
part1 is the part of the patch that is suitable for 3.4.
part2 are the changes that have to wait for 3.5 (mostly because of default values).
|
msg209270 - (view) |
Author: Nikolaus Rath (nikratio) * |
Date: 2014-01-26 02:27 |
I'll wait with working on _datetimemodule.c until someone had a chance to look over my _timemodule.c patch. (I want to make sure I'm following the right procedure).
|
msg218647 - (view) |
Author: Tal Einat (taleinat) * |
Date: 2014-05-16 08:07 |
Regarding the handling of time_t arguments which can be None, I agree that the second version (without custom convertors) is simpler and clearer while having no disadvantage that I can see.
I'd like to review the rest of the patches, but you mention changes to the AC policy regarding 3.4 and 3.5 and I can't find a reference to these changes or to the new policy.
|
msg219051 - (view) |
Author: Nikolaus Rath (nikratio) * |
Date: 2014-05-24 19:33 |
Tal, I was referring to this mail: https://mail.python.org/pipermail/python-dev/2014-January/132066.html
|
msg224758 - (view) |
Author: Larry Hastings (larry) * |
Date: 2014-08-04 20:12 |
All the Derby patches should only go into trunk at this point.
|
msg336195 - (view) |
Author: Serhiy Storchaka (serhiy.storchaka) * |
Date: 2019-02-21 09:44 |
The modern workflow requires creating a PR on GitHub. Nikolaus, do you mind to convert your patch to a PR?
|
msg336556 - (view) |
Author: Nikolaus Rath (nikratio) * |
Date: 2019-02-25 21:18 |
Sorry, no. I have long lost context and interest in this.
|
msg346297 - (view) |
Author: Zackery Spytz (ZackerySpytz) * |
Date: 2019-06-22 20:37 |
I have created a PR for Modules/timemodule.c.
|
|
Date |
User |
Action |
Args |
2022-04-11 14:57:56 | admin | set | github: 64376 |
2020-05-19 06:28:09 | hauntsaninja | set | nosy:
+ hauntsaninja pull_requests:
+ pull_request19505
|
2019-06-24 08:34:36 | jdemeyer | set | pull_requests:
+ pull_request14150 |
2019-06-22 20:37:00 | ZackerySpytz | set | nosy:
+ ZackerySpytz
messages:
+ msg346297 versions:
+ Python 3.9, - Python 3.8 |
2019-06-22 19:53:06 | ZackerySpytz | set | pull_requests:
+ pull_request14133 |
2019-02-25 21:18:39 | nikratio | set | messages:
+ msg336556 |
2019-02-21 09:44:59 | serhiy.storchaka | set | nosy:
+ serhiy.storchaka
messages:
+ msg336195 versions:
+ Python 3.8, - Python 3.5 |
2018-07-28 16:40:26 | timhoffm | set | stage: needs patch -> patch review pull_requests:
+ pull_request8052 |
2018-07-28 16:09:29 | petr.viktorin | set | nosy:
+ petr.viktorin
|
2018-06-14 17:28:59 | taleinat | set | nosy:
- taleinat
|
2015-02-25 15:27:40 | serhiy.storchaka | set | components:
+ Argument Clinic |
2014-08-04 20:12:59 | larry | set | messages:
+ msg224758 versions:
+ Python 3.5, - Python 3.4 |
2014-05-24 19:33:24 | nikratio | set | messages:
+ msg219051 |
2014-05-16 09:03:06 | skrah | set | nosy:
- skrah
|
2014-05-16 08:07:25 | taleinat | set | nosy:
+ taleinat messages:
+ msg218647
|
2014-01-26 02:27:05 | nikratio | set | messages:
+ msg209270 |
2014-01-26 02:14:48 | nikratio | set | files:
+ timemodule_part2_rev3.patch |
2014-01-26 02:08:59 | nikratio | set | files:
+ timemodule_part1_rev3.patch |
2014-01-26 02:08:53 | nikratio | set | files:
- timemodule_part1_rev3.patch |
2014-01-26 01:55:57 | nikratio | set | files:
+ timemodule_part1_rev3.patch
messages:
+ msg209268 |
2014-01-25 06:07:20 | nikratio | set | messages:
+ msg209153 |
2014-01-22 04:39:38 | nikratio | set | files:
+ timemodule_rev2.patch
messages:
+ msg208746 |
2014-01-19 04:14:29 | larry | set | messages:
+ msg208441 |
2014-01-19 03:58:19 | nikratio | set | messages:
+ msg208439 |
2014-01-19 01:03:29 | nikratio | set | files:
- issue20177.patch |
2014-01-19 01:03:17 | nikratio | set | files:
+ timemodule.patch
messages:
+ msg208429 |
2014-01-18 23:54:46 | larry | set | messages:
+ msg208426 |
2014-01-18 23:29:36 | nikratio | set | messages:
+ msg208425 |
2014-01-18 23:17:48 | nikratio | set | messages:
+ msg208424 |
2014-01-18 09:12:51 | larry | set | messages:
+ msg208391 |
2014-01-18 04:47:16 | nikratio | set | files:
+ issue20177.patch
nosy:
+ nikratio messages:
+ msg208383
keywords:
+ patch |
2014-01-08 01:36:37 | r.david.murray | link | issue20187 dependencies |
2014-01-08 01:04:41 | larry | set | messages:
+ msg207654 title: Derby #8: Convert 52 sites to Argument Clinic across 3 files -> Derby #8: Convert 28 sites to Argument Clinic across 2 files |
2014-01-08 00:55:27 | skrah | set | nosy:
+ skrah messages:
+ msg207652
|
2014-01-07 23:52:51 | larry | set | type: behavior -> enhancement |
2014-01-07 23:49:34 | larry | create | |