@@ -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" ,
@@ -2298,8 +2305,9 @@ def parse(
22982305
22992306 See :meth:`rdflib.graph.Graph.parse` for documentation on arguments.
23002307
2301- If the source is in a format that does not support named graphs it's triples
2302- will be added to the default graph (i.e. `Dataset.default_context`).
2308+ If the source is in a format that does not support named graphs its triples
2309+ will be added to the default graph
2310+ (i.e. :attr:`ConjunctiveGraph.default_context`).
23032311
23042312 :Returns:
23052313
@@ -2325,7 +2333,7 @@ def parse(
23252333 the ``publicID`` parameter will also not be used as the name for the
23262334 graph that the data is loaded into, and instead the triples from sources
23272335 that do not support named graphs will be loaded into the default graph
2328- (i.e. `ConjunctionGraph .default_context`).
2336+ (i.e. :attr:`ConjunctiveGraph .default_context`).
23292337 """
23302338
23312339 source = create_input_source (
@@ -2559,8 +2567,9 @@ def parse(
25592567
25602568 The source is specified using one of source, location, file or data.
25612569
2562- If the source is in a format that does not support named graphs it's triples
2563- will be added to the default graph (i.e. `Dataset.default_context`).
2570+ If the source is in a format that does not support named graphs its triples
2571+ will be added to the default graph
2572+ (i.e. :attr:`.Dataset.default_context`).
25642573
25652574 .. caution::
25662575
@@ -2581,7 +2590,7 @@ def parse(
25812590 the ``publicID`` parameter will also not be used as the name for the
25822591 graph that the data is loaded into, and instead the triples from sources
25832592 that do not support named graphs will be loaded into the default graph
2584- (i.e. `ConjunctionGraph .default_context`).
2593+ (i.e. :attr:`.Dataset .default_context`).
25852594 """
25862595
25872596 c = ConjunctiveGraph .parse (
0 commit comments