Skip to content

Commit 13c2378

Browse files
committed
Python: Update a few QLdocs
1 parent 2f5d51c commit 13c2378

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

python/ql/lib/semmle/python/frameworks/Stdlib.qll

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -297,6 +297,8 @@ module Stdlib {
297297
}
298298

299299
/**
300+
* INTERNAL: Do not use.
301+
*
300302
* Provides models for the Python standard library.
301303
*
302304
* This module is marked private as exposing it means committing to 1-year deprecation
@@ -1305,7 +1307,7 @@ module StdlibPrivate {
13051307
}
13061308

13071309
/**
1308-
* A reference to `pickle.load`
1310+
* Gets a reference to `pickle.load`
13091311
*/
13101312
API::Node pickle_load() {
13111313
result = pickle().getMember("load")
@@ -1314,7 +1316,7 @@ module StdlibPrivate {
13141316
}
13151317

13161318
/**
1317-
* A reference to `pickle.loads`
1319+
* Gets a reference to `pickle.loads`
13181320
*/
13191321
API::Node pickle_loads() {
13201322
result = pickle().getMember("loads")
@@ -3631,7 +3633,7 @@ module StdlibPrivate {
36313633
// ---------------------------------------------------------------------------
36323634
// xml.etree.ElementTree
36333635
// ---------------------------------------------------------------------------
3634-
/** A reference to the `xml.etree.ElementTree` class */
3636+
/** Gets a reference to the `xml.etree.ElementTree` class */
36353637
API::Node elementTreeClassRef() {
36363638
result = API::moduleImport("xml").getMember("etree").getMember("ElementTree").getASubclass*() or
36373639
result = ModelOutput::getATypeNode("xml.etree.ElementTree~Subclass").getASubclass*()

0 commit comments

Comments
 (0)