Details
Assignee
UnassignedUnassignedReporter
importimportApproval
TriagedPatch
CodePriority
MinorAffects versions
Details
Details
Assignee
Unassigned
UnassignedReporter
import
importApproval
Triaged
Patch
Code
Priority
Affects versions
Created November 2, 2013 at 2:00 AM
Updated March 12, 2015 at 8:33 PM
The clojure.xml parse docstring mentions that parameter s "can be a File, InputStream or String naming a URI." But those choices do not cover a common case, parsing the value of a String. Actually, parse also allows InputSource, which solves the problem. The docstring should mention InputSource (or clarify its omission, if not inadvertent).
user> (use '[clojure.xml :as xml]) nil user> (import '[java.io StringReader]) java.io.StringReader user> (import '[org.xml.sax InputSource]) org.xml.sax.InputSource user> (xml/parse (InputSource. (StringReader. "<egg>green</egg>"))) {:tag :egg, :attrs nil, :content ["green"]}
Approach: Update doc-string to reflect that s also can be an InputSource
Patch: CLJ-1290.patch
Screened by: