@@ -433,6 +433,11 @@ class Graph(Node):
433433 For more on named graphs, see: http://www.w3.org/2004/03/trix/
434434 """
435435
436+ context_aware : bool
437+ formula_aware : bool
438+ default_union : bool
439+ base : Optional [str ]
440+
436441 def __init__ (
437442 self ,
438443 store : Union [Store , str ] = "default" ,
@@ -1393,9 +1398,9 @@ def parse(
13931398 :doc:`Security Considerations </security_considerations>`
13941399 documentation.
13951400
1396- :param source: An `InputSource`, file-like object, `Path` like object,
1397- or string. In the case of a string the string is the location of the
1398- source.
1401+ :param source: An `xml.sax.xmlreader. InputSource`, file-like object,
1402+ `pathlib.Path` like object, or string. In the case of a string the string
1403+ is the location of the source.
13991404 :param location: A string indicating the relative or absolute URL of the
14001405 source. `Graph`'s absolutize method is used if a relative location
14011406 is specified.
@@ -1910,6 +1915,8 @@ class ConjunctiveGraph(Graph):
19101915 All queries are carried out against the union of all graphs.
19111916 """
19121917
1918+ default_context : _ContextType
1919+
19131920 def __init__ (
19141921 self ,
19151922 store : Union [Store , str ] = "default" ,
@@ -2227,8 +2234,9 @@ def parse(
22272234
22282235 See :meth:`rdflib.graph.Graph.parse` for documentation on arguments.
22292236
2230- If the source is in a format that does not support named graphs it's triples
2231- will be added to the default graph (i.e. `Dataset.default_context`).
2237+ If the source is in a format that does not support named graphs its triples
2238+ will be added to the default graph
2239+ (i.e. :attr:`ConjunctiveGraph.default_context`).
22322240
22332241 :Returns:
22342242
@@ -2254,7 +2262,7 @@ def parse(
22542262 the ``publicID`` parameter will also not be used as the name for the
22552263 graph that the data is loaded into, and instead the triples from sources
22562264 that do not support named graphs will be loaded into the default graph
2257- (i.e. `ConjunctiveGraph.default_context`).
2265+ (i.e. :attr: `ConjunctiveGraph.default_context`).
22582266 """
22592267
22602268 source = create_input_source (
@@ -2488,8 +2496,9 @@ def parse(
24882496
24892497 The source is specified using one of source, location, file or data.
24902498
2491- If the source is in a format that does not support named graphs it's triples
2492- will be added to the default graph (i.e. `Dataset.default_context`).
2499+ If the source is in a format that does not support named graphs its triples
2500+ will be added to the default graph
2501+ (i.e. :attr:`.Dataset.default_context`).
24932502
24942503 .. caution::
24952504
@@ -2510,7 +2519,7 @@ def parse(
25102519 the ``publicID`` parameter will also not be used as the name for the
25112520 graph that the data is loaded into, and instead the triples from sources
25122521 that do not support named graphs will be loaded into the default graph
2513- (i.e. `ConjunctiveGraph .default_context`).
2522+ (i.e. :attr:`.Dataset .default_context`).
25142523 """
25152524
25162525 c = ConjunctiveGraph .parse (
0 commit comments